You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
using System; using System.Linq; using System.Text; using SqlSugar;
namespace Entity.Sugar { ///<summary>
///
///</summary>
[SugarTable("SETB_PDT_ServiceQS")] public partial class SETB_PDT_ServiceQS : ModelContext { public SETB_PDT_ServiceQS() {
} /// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey = true)] public string OrgID { get; set; } public const string CN_ORGID = "OrgID";
/// <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 LangID { get; set; } public const string CN_LANGID = "LangID";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string QuotationType { get; set; } public const string CN_QUOTATIONTYPE = "QuotationType";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string Effective { get; set; } public const string CN_EFFECTIVE = "Effective";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string QuotationName { get; set; } public const string CN_QUOTATIONNAME = "QuotationName";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string ExpensesMemo { get; set; } public const string CN_EXPENSESMEMO = "ExpensesMemo";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string ServicesMemo { get; set; } public const string CN_SERVICESMEMO = "ServicesMemo";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string CreateUser { get; set; } public const string CN_CREATEUSER = "CreateUser";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public DateTime? CreateDate { get; set; } public const string CN_CREATEDATE = "CreateDate";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string ModifyUser { get; set; } public const string CN_MODIFYUSER = "ModifyUser";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public DateTime? ModifyDate { get; set; } public const string CN_MODIFYDATE = "ModifyDate";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string EscortFreeCityID { get; set; } public const string CN_ESCORTFREECITYID = "EscortFreeCityID";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string CostRules { get; set; } public const string CN_COSTRULES = "CostRules";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string TruckCostRules { get; set; } public const string CN_TRUCKCOSTRULES = "TruckCostRules";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string TruckHolidayPay { get; set; } public const string CN_TRUCKHOLIDAYPAY = "TruckHolidayPay";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string TruckMarkupByModel { get; set; } public const string CN_TRUCKMARKUPBYMODEL = "TruckMarkupByModel";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string CurrencyID { get; set; } public const string CN_CURRENCYID = "CurrencyID";
} }
|