using System; using System.Linq; using System.Text; using SqlSugar; namespace Entity.Sugar { /// /// /// [SugarTable("SETB_PDT_ServiceCostRules")] public partial class SETB_PDT_ServiceCostRules : ModelContext { public SETB_PDT_ServiceCostRules() { } /// /// 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 QSID { get; set; } public const string CN_QSID = "QSID"; /// /// Desc: /// Default: /// Nullable:True /// public string Weight_Min { get; set; } public const string CN_WEIGHT_MIN = "Weight_Min"; /// /// Desc: /// Default: /// Nullable:True /// public string Weight_Max { get; set; } public const string CN_WEIGHT_MAX = "Weight_Max"; /// /// Desc: /// Default: /// Nullable:True /// public int? Price { get; set; } public const string CN_PRICE = "Price"; /// /// Desc: /// Default: /// Nullable:True /// public string PricingMode { get; set; } public const string CN_PRICINGMODE = "PricingMode"; /// /// Desc: /// Default: /// Nullable:True /// public string Memo { get; set; } public const string CN_MEMO = "Memo"; /// /// Desc: /// Default: /// Nullable:True /// public DateTime? CreateDate { get; set; } public const string CN_CREATEDATE = "CreateDate"; } }