using System; using System.Linq; using System.Text; using SqlSugar; namespace Entity.Sugar { /// /// /// [SugarTable("SETB_SAL_Booking")] public partial class SETB_SAL_Booking : ModelContext { public SETB_SAL_Booking() { } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string BookingID { get; set; } public const string CN_BOOKINGID = "BookingID"; /// /// Desc: /// Default: /// Nullable:False /// public string BookingNo { get; set; } public const string CN_BOOKINGNO = "BookingNo"; /// /// Desc: /// Default: /// Nullable:True /// public DateTime? BookingDate { get; set; } public const string CN_BOOKINGDATE = "BookingDate"; /// /// Desc: /// Default: /// Nullable:False /// public string ServiceID { get; set; } public const string CN_SERVICEID = "ServiceID"; /// /// Desc: /// Default: /// Nullable:False /// public DateTime? ServiceDate { get; set; } public const string CN_SERVICEDATE = "ServiceDate"; /// /// Desc: /// Default: /// Nullable:False /// public string InvoiceID { get; set; } public const string CN_INVOICEID = "InvoiceID"; /// /// Desc: /// Default: /// Nullable:False /// public string CustomerID { get; set; } public const string CN_CUSTOMERID = "CustomerID"; /// /// Desc: /// Default: /// Nullable:True /// public string PaymentID { get; set; } public const string CN_PAYMENTID = "PaymentID"; /// /// Desc: /// Default: /// Nullable:True /// public string ShippingID { get; set; } public const string CN_SHIPPINGID = "ShippingID"; /// /// Desc: /// Default: /// Nullable:True /// public string BookingStatus { get; set; } public const string CN_BOOKINGSTATUS = "BookingStatus"; /// /// Desc: /// Default: /// Nullable:True /// public string SupplierStatus { get; set; } public const string CN_SUPPLIERSTATUS = "SupplierStatus"; /// /// Desc: /// Default: /// Nullable:True /// public string PaymentStatus { get; set; } public const string CN_PAYMENTSTATUS = "PaymentStatus"; /// /// Desc: /// Default: /// Nullable:True /// public int Quantity { get; set; } public const string CN_QUANTITY = "Quantity"; /// /// Desc: /// Default: /// Nullable:True /// public string CurrencyID { get; set; } public const string CN_CURRENCYID = "CurrencyID"; /// /// Desc: /// Default: /// Nullable:True /// public string TaxRateID { get; set; } public const string CN_TAXRATEID = "TaxRateID"; /// /// Desc: /// Default: /// Nullable:True /// public double TotalPrice { get; set; } public const string CN_TOTALPRICE = "TotalPrice"; /// /// Desc: /// Default: /// Nullable:True /// public string Memo { get; set; } public const string CN_MEMO = "Memo"; /// /// Desc:Y摸Τ N摸礚 /// Default: /// Nullable:True /// public string Effective { get; set; } public const string CN_EFFECTIVE = "Effective"; /// /// Desc: /// Default: /// Nullable:True /// public int? OrderByValue { get; set; } public const string CN_ORDERBYVALUE = "OrderByValue"; /// /// Desc:Y埃 Nゼ埃 /// Default:N /// Nullable:True /// public string DelStatus { get; set; } public const string CN_DELSTATUS = "DelStatus"; /// /// Desc: /// Default: /// Nullable:True /// public string CreateUser { get; set; } public const string CN_CREATEUSER = "CreateUser"; /// /// Desc: /// Default: /// Nullable:True /// public DateTime? CreateDate { get; set; } public const string CN_CREATEDATE = "CreateDate"; /// /// Desc: /// Default: /// Nullable:True /// public string ModifyUser { get; set; } public const string CN_MODIFYUSER = "ModifyUser"; /// /// Desc: /// Default: /// Nullable:True /// public DateTime? ModifyDate { get; set; } public const string CN_MODIFYDATE = "ModifyDate"; /// /// Desc: /// Default: /// Nullable:False /// public string OrgID { get; set; } public const string CN_ORGID = "OrgID"; } }