You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
using System; using System.Linq; using System.Text; using SqlSugar;
namespace Entity.Sugar { ///<summary>
///
///</summary>
[SugarTable("SETB_CRM_Company")] public partial class SETB_CRM_Company : ModelContext { public SETB_CRM_Company() {
} /// <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 Account { get; set; } public const string CN_ACCOUNT = "Account";
/// <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";
} }
|