using System; using System.Linq; using System.Text; using SqlSugar; namespace Entity.Sugar { /// /// /// [SugarTable("SETB_SAL_InvoiceCompany")] public partial class SETB_SAL_InvoiceCompany : ModelContext { public SETB_SAL_InvoiceCompany() { } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string BookingID { get; set; } public const string CN_BOOKINGID = "BookingID"; /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string CompanyID { get; set; } public const string CN_COMPANYID = "CompanyID"; /// /// Desc: /// Default: /// Nullable:True /// public string CompanyName { get; set; } public const string CN_COMPANYNAME = "CompanyName"; /// /// Desc: /// Default: /// Nullable:True /// public string TaxNumber { get; set; } public const string CN_TAXNUMBER = "TaxNumber"; /// /// Desc: /// Default: /// Nullable:True /// public string CountryID { get; set; } public const string CN_COUNTRYID = "CountryID"; /// /// Desc: /// Default: /// Nullable:True /// public string StateName { get; set; } public const string CN_STATENAME = "StateName"; /// /// Desc: /// Default: /// Nullable:True /// public string CityName { get; set; } public const string CN_CITYNAME = "CityName"; /// /// Desc: /// Default: /// Nullable:True /// public string Street1 { get; set; } public const string CN_STREET1 = "Street1"; /// /// Desc: /// Default: /// Nullable:True /// public string Street2 { get; set; } public const string CN_STREET2 = "Street2"; /// /// Desc: /// Default: /// Nullable:True /// public string ZipCode { get; set; } public const string CN_ZIPCODE = "ZipCode"; } }