From b1c882fb407b21cedef07add80a548ab17e8df53 Mon Sep 17 00:00:00 2001 From: alina <1449359159@qq.com> Date: Fri, 24 Mar 2023 09:59:16 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=A8=82=E8=B3=BC=E4=BA=BA?= =?UTF-8?q?=EF=BC=8C=E8=B3=AC=E5=96=AE=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- EuroTran/Entity/Entity.csproj | 3 + .../Entity/Sugar/SETB_SAL_InvoiceCompany.cs | 102 ++++++++++++++++++ .../Sugar/SETB_SAL_InvoiceIndividual.cs | 94 ++++++++++++++++ EuroTran/Entity/Sugar/SETB_SAL_Subscriber.cs | 94 ++++++++++++++++ 4 files changed, 293 insertions(+) create mode 100644 EuroTran/Entity/Sugar/SETB_SAL_InvoiceCompany.cs create mode 100644 EuroTran/Entity/Sugar/SETB_SAL_InvoiceIndividual.cs create mode 100644 EuroTran/Entity/Sugar/SETB_SAL_Subscriber.cs 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"; + + } +}