diff --git a/EuroTran/Entity/Entity.csproj b/EuroTran/Entity/Entity.csproj index 7d0be31..b7fa0ae 100644 --- a/EuroTran/Entity/Entity.csproj +++ b/EuroTran/Entity/Entity.csproj @@ -124,7 +124,10 @@ + + + diff --git a/EuroTran/Entity/Sugar/SETB_SAL_InvoiceCompany.cs b/EuroTran/Entity/Sugar/SETB_SAL_InvoiceCompany.cs new file mode 100644 index 0000000..492aefd --- /dev/null +++ b/EuroTran/Entity/Sugar/SETB_SAL_InvoiceCompany.cs @@ -0,0 +1,102 @@ +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"; + + } +} diff --git a/EuroTran/Entity/Sugar/SETB_SAL_InvoiceIndividual.cs b/EuroTran/Entity/Sugar/SETB_SAL_InvoiceIndividual.cs new file mode 100644 index 0000000..44c1205 --- /dev/null +++ b/EuroTran/Entity/Sugar/SETB_SAL_InvoiceIndividual.cs @@ -0,0 +1,94 @@ +using System; +using System.Linq; +using System.Text; +using SqlSugar; + +namespace Entity.Sugar +{ + /// + /// + /// + [SugarTable("SETB_SAL_InvoiceIndividual")] + public partial class SETB_SAL_InvoiceIndividual : ModelContext + { + public SETB_SAL_InvoiceIndividual() + { + + + } + /// + /// 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 MemberID { get; set; } + public const string CN_MEMBERID = "MemberID"; + + /// + /// Desc: + /// Default: + /// Nullable:True + /// + public string FirstName { get; set; } + public const string CN_FIRSTNAME = "FirstName"; + + /// + /// Desc: + /// Default: + /// Nullable:True + /// + public string LastName { get; set; } + public const string CN_LASTNAME = "LastName"; + + /// + /// Desc: + /// Default: + /// Nullable:True + /// + public string Email { get; set; } + public const string CN_EMAIL = "Email"; + + /// + /// Desc: + /// Default: + /// Nullable:True + /// + public string CountryID { get; set; } + public const string CN_COUNTRYID = "CountryID"; + + /// + /// Desc: + /// Default: + /// Nullable:True + /// + public string Phone { get; set; } + public const string CN_PHONE = "Phone"; + + /// + /// Desc: + /// Default: + /// Nullable:True + /// + public string PhoneCode { get; set; } + public const string CN_PHONECODE = "PhoneCode"; + + /// + /// Desc: + /// Default: + /// Nullable:True + /// + public DateTime? CreateDate { get; set; } + public const string CN_CREATEDATE = "CreateDate"; + + } +} diff --git a/EuroTran/Entity/Sugar/SETB_SAL_Subscriber.cs b/EuroTran/Entity/Sugar/SETB_SAL_Subscriber.cs new file mode 100644 index 0000000..ff8f905 --- /dev/null +++ b/EuroTran/Entity/Sugar/SETB_SAL_Subscriber.cs @@ -0,0 +1,94 @@ +using System; +using System.Linq; +using System.Text; +using SqlSugar; + +namespace Entity.Sugar +{ + /// + /// + /// + [SugarTable("SETB_SAL_Subscriber")] + public partial class SETB_SAL_Subscriber : ModelContext + { + public SETB_SAL_Subscriber() + { + + + } + /// + /// 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 MemberID { get; set; } + public const string CN_MEMBERID = "MemberID"; + + /// + /// Desc: + /// Default: + /// Nullable:True + /// + public string FirstName { get; set; } + public const string CN_FIRSTNAME = "FirstName"; + + /// + /// Desc: + /// Default: + /// Nullable:True + /// + public string LastName { get; set; } + public const string CN_LASTNAME = "LastName"; + + /// + /// Desc: + /// Default: + /// Nullable:True + /// + public string Email { get; set; } + public const string CN_EMAIL = "Email"; + + /// + /// Desc: + /// Default: + /// Nullable:True + /// + public string CountryID { get; set; } + public const string CN_COUNTRYID = "CountryID"; + + /// + /// Desc: + /// Default: + /// Nullable:True + /// + public string Phone { get; set; } + public const string CN_PHONE = "Phone"; + + /// + /// Desc: + /// Default: + /// Nullable:True + /// + public string PhoneCode { get; set; } + public const string CN_PHONECODE = "PhoneCode"; + + /// + /// Desc: + /// Default: + /// Nullable:True + /// + public DateTime? CreateDate { get; set; } + public const string CN_CREATEDATE = "CreateDate"; + + } +}