using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace CRM.Core.Model.Entity { [Table("BAS_PARAMETERGROUP")] public partial class BAS_PARAMETERGROUP { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public BAS_PARAMETERGROUP() { BAS_PARAMETER = new HashSet(); } [Key] [StringLength(50)] public string GROUPID { get; set; } [StringLength(50)] public string GROUPNAME { get; set; } public DateTime? CTIME { get; set; } public decimal? CREATEUSER { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection BAS_PARAMETER { get; set; } } }