using System; using System.Linq; using System.Text; using SqlSugar; namespace Entity.Sugar { /// /// /// [SugarTable("SETB_PDT_ServiceByPPTime")] public partial class SETB_PDT_ServiceByPPTime : ModelContext { public SETB_PDT_ServiceByPPTime() { } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string Guid { get; set; } public const string CN_GUID = "Guid"; /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string ServiceID { get; set; } public const string CN_SERVICEID = "ServiceID"; /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string LangID { get; set; } public const string CN_LANGID = "LangID"; /// /// Desc: /// Default: /// Nullable:True /// public string TimeS { get; set; } public const string CN_TIMES = "TimeS"; /// /// Desc: /// Default: /// Nullable:True /// public string TimeE { get; set; } public const string CN_TIMEE = "TimeE"; } }