using Newtonsoft.Json; using NPoco; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace JwKdsV.Entity.OrderPackage { [Serializable] [JsonObject(MemberSerialization.OptIn)] public abstract class BaseEntity { public static string COMMONUSER = "COMMONUSER"; /// /// Id /// [JsonProperty(PropertyName = "id")] [Column("id")] public string Id { get; set; } /// /// 租户编号 /// [JsonProperty(PropertyName = "tenantId")] [Column("tenantId")] public string TenantId { get; set; } /// /// 创建人 /// [JsonProperty(PropertyName = "createUser")] [Column("createUser")] public string CreateUser { get; set; } /// /// 创建时间 /// [JsonProperty(PropertyName = "createDate")] [Column("createDate")] public DateTime CreateDate { get; set; } /// /// 修改人 /// [JsonProperty(PropertyName = "modifyUser")] [Column("modifyUser")] public string ModifyUser { get; set; } /// /// 修改时间 /// [JsonProperty(PropertyName = "modifyDate")] [Column("modifyDate")] public DateTime ModifyDate { get; set; } } }