using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace Entity.Sugar
{
///
///
///
[SugarTable("SETB_SCM_SupplierContactor")]
public partial class SETB_SCM_SupplierContactor : ModelContext
{
public SETB_SCM_SupplierContactor()
{
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true)]
public string OrgID { get; set; }
public const string CN_ORGID = "OrgID";
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true)]
public string SupplierID { get; set; }
public const string CN_SUPPLIERID = "SupplierID";
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true)]
public string LangType { get; set; }
public const string CN_LANGTYPE = "LangType";
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true)]
public string Guid { get; set; }
public const string CN_GUID = "Guid";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string ContacterName { get; set; }
public const string CN_CONTACTERNAME = "ContacterName";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Telephone { get; set; }
public const string CN_TELEPHONE = "Telephone";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Email { get; set; }
public const string CN_EMAIL = "Email";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Title { get; set; }
public const string CN_TITLE = "Title";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Memo { get; set; }
public const string CN_MEMO = "Memo";
}
}