using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; using NPoco; namespace POSV.Entity { /// /// 营业日方案班次 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] [TableName("pos_business_plandetail")] [PrimaryKey(new string[] { "id" },AutoIncrement = false)] public class BusinessPlanDetail : BaseEntity { public BusinessPlanDetail() { } /// /// 租户ID /// [JsonProperty(PropertyName = "tenantId")] [Column("tenantId")] public string TenantId { get; set; } /// /// 方案ID /// [JsonProperty(PropertyName = "planId")] [Column("planId")] public string PlanId { get; set; } /// /// 名称 /// [JsonProperty(PropertyName = "name")] [Column("name")] public string Name { get; set; } /// /// 开始日 /// [JsonProperty(PropertyName = "startType")] [Column("startType")] public int StartType { get; set; } /// /// 开始时间 /// [JsonProperty(PropertyName = "startTime")] [Column("startTime")] public string StartTime { get; set; } /// /// 结束日 /// [JsonProperty(PropertyName = "endType")] [Column("endType")] public int EndType { get; set; } /// /// 结束时间 /// [JsonProperty(PropertyName = "endTime")] [Column("endTime")] public string EndTime { get; set; } /// /// 扩展字段1 /// [JsonProperty(PropertyName = "ext1")] [Column("ext1")] public string Ext1 { get; set; } /// /// 扩展字段2 /// [JsonProperty(PropertyName = "ext2")] [Column("ext2")] public string Ext2 { get; set; } /// /// 扩展字段3 /// [JsonProperty(PropertyName = "ext3")] [Column("ext3")] public string Ext3 { get; set; } } }