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