using System;
using System.Linq;
using System.Text;
using SqlSugar;

namespace Entity.Sugar
{
    ///<summary>
    ///
    ///</summary>
    [SugarTable("SETB_SAL_InvoiceCompany")]
    public partial class SETB_SAL_InvoiceCompany : ModelContext
    {
        public SETB_SAL_InvoiceCompany()
        {


        }
        /// <summary>
        /// Desc:
        /// Default:
        /// Nullable:False
        /// </summary>           
        [SugarColumn(IsPrimaryKey = true)]
        public string BookingID { get; set; }
        public const string CN_BOOKINGID = "BookingID";

        /// <summary>
        /// Desc:
        /// Default:
        /// Nullable:False
        /// </summary>           
        [SugarColumn(IsPrimaryKey = true)]
        public string CompanyID { get; set; }
        public const string CN_COMPANYID = "CompanyID";

        /// <summary>
        /// Desc:
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string CompanyName { get; set; }
        public const string CN_COMPANYNAME = "CompanyName";

        /// <summary>
        /// Desc:
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string TaxNumber { get; set; }
        public const string CN_TAXNUMBER = "TaxNumber";

        /// <summary>
        /// Desc:
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string CountryID { get; set; }
        public const string CN_COUNTRYID = "CountryID";

        /// <summary>
        /// Desc:
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string StateName { get; set; }
        public const string CN_STATENAME = "StateName";

        /// <summary>
        /// Desc:
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string CityName { get; set; }
        public const string CN_CITYNAME = "CityName";

        /// <summary>
        /// Desc:
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string Street1 { get; set; }
        public const string CN_STREET1 = "Street1";

        /// <summary>
        /// Desc:
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string Street2 { get; set; }
        public const string CN_STREET2 = "Street2";

        /// <summary>
        /// Desc:
        /// Default:
        /// Nullable:True
        /// </summary>           
        public string ZipCode { get; set; }
        public const string CN_ZIPCODE = "ZipCode";

    }
}