using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CK.SCP.Models.ScpEntity { [Serializable] public class RecordEntity { public RecordEntity() { UserInAddress = new List(); UserInVendIds = new List(); BillStateList = new List(); } public System.DateTime CreateTime { get; set; } [StringLength(50)] public string CreateUser { get; set; } public Nullable UpdateTime { get; set; } [StringLength(50)] public string UpdateUser { get; set; } [StringLength(50)] public string UpdateInfo { get; set; } public bool IsDeleted { get; set; } public System.Guid GUID { get; set; } [NotMapped] public List UserInAddress { set; get; } [NotMapped] public List UserInVendIds { set; get; } [NotMapped] public List BillStateList { set; get; } } }