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_CMS_ExhibInfo_Description")] public partial class SETB_CMS_ExhibInfo_Description : ModelContext { public SETB_CMS_ExhibInfo_Description() {
} /// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
//[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
[SugarColumn(IsPrimaryKey = true)] public string DescriptionID { get; set; } public const string CN_DESCRIPTIONID = "DescriptionID";
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
//[SugarColumn(IsPrimaryKey = false)]
public string ExhibInfoID { get; set; } public const string CN_EXHIBINFOID = "ExhibInfoID";
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
//[SugarColumn(IsPrimaryKey = false)]
public string LanguageID { get; set; } public const string CN_LANGUAGEID = "LanguageID";
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
//[SugarColumn(IsPrimaryKey = false)]
public byte[] Logo { get; set; } public const string CN_LOGO = "Logo";
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
//[SugarColumn(IsPrimaryKey = false)]
public string Intro { get; set; } public const string CN_INTRO = "Intro";
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
//[SugarColumn(IsPrimaryKey = false)]
public string Profile { get; set; } public const string CN_PROFILE = "Profile";
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
//[SugarColumn(IsPrimaryKey = false)]
public string Detail { get; set; } public const string CN_DETAIL = "Detail";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string CreateUser { get; set; } public const string CN_CREATEUSER = "CreateUser";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public DateTime? CreateDate { get; set; } public const string CN_CREATEDATE = "CreateDate";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string ModifyUser { get; set; } public const string CN_MODIFYUSER = "ModifyUser";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public DateTime? ModifyDate { get; set; } public const string CN_MODIFYDATE = "ModifyDate";
/// <summary>
/// Desc:Y摸Τ N摸礚
/// Default:
/// Nullable:True
/// </summary>
public string Effective { get; set; } public const string CN_EFFECTIVE = "Effective";
/// <summary>
/// Desc:Y埃 Nゼ埃
/// Default:N
/// Nullable:True
/// </summary>
public string DelStatus { get; set; } public const string CN_DELSTATUS = "DelStatus";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public int? OrderByValue { get; set; } public const string CN_ORDERBYVALUE = "OrderByValue";
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
//[SugarColumn(IsIdentity = true)]
public string OrgID { get; set; } public const string CN_ORGID = "OrgID";
} }
|