using System; using System.Linq; using System.Text; using SqlSugar; namespace Entity.Sugar { /// /// /// [SugarTable("SETB_CRM_Contact")] public partial class SETB_CRM_Contact : ModelContext { public SETB_CRM_Contact() { } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string ContactID { get; set; } public const string CN_CONTACTID = "ContactID"; /// /// Desc: /// Default: /// Nullable:True /// public string Account { get; set; } public const string CN_ACCOUNT = "Account"; /// /// Desc: /// Default: /// Nullable:True /// public string Title { get; set; } public const string CN_TITLE = "Title"; /// /// 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 PhoneCountryCode { get; set; } public const string CN_PHOMECOUNTRYCODE = "PhoneCountryCode"; /// /// Desc: /// Default: /// Nullable:True /// public string PhoneNo { get; set; } public const string CN_PHONENO = "PhoneNo"; /// /// Desc: /// Default: /// Nullable:True /// public string FaxNo { get; set; } public const string CN_FAXNO = "FaxNo"; /// /// Desc: /// Default: /// Nullable:True /// public string AddressID { get; set; } public const string CN_ADDRESSID = "AddressID"; /// /// Desc: /// Default: /// Nullable:True /// public int? OrderByValue { get; set; } public const string CN_ORDERBYVALUE = "OrderByValue"; /// /// Desc: /// Default: /// Nullable:False /// //[SugarColumn(IsIdentity = true)] public string OrgID { get; set; } public const string CN_ORGID = "OrgID"; } }