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