using System; using System.Linq; using System.Text; using SqlSugar; namespace Entity.Sugar { /// /// /// [SugarTable("SETB_PDT_ServiceTruckOtherCost")] public partial class SETB_PDT_ServiceTruckOtherCost : ModelContext { public SETB_PDT_ServiceTruckOtherCost() { } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string QSID { get; set; } public const string CN_QSID = "QSID"; /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string TruckID { get; set; } public const string CN_TRUCKID = "TruckID"; /// /// Desc: /// Default: /// Nullable:True /// public int? Price { get; set; } public const string CN_PRICE = "Price"; /// /// Desc: /// Default: /// Nullable:True /// public string Type { get; set; } public const string CN_TYPE = "Type"; } }