using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace Entity.Sugar
{
///
///
///
[SugarTable("SETB_SYS_Category")]
public partial class SETB_SYS_Category : ModelContext
{
public SETB_SYS_Category()
{
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true)]
public string CategoryID { get; set; }
public const string CN_CATEGORYID = "CategoryID";
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true)]
public String LanguageID { get; set; }
public const string CN_LANGUAGE = "LanguageID";
///
/// Desc:
/// Default:
/// Nullable:False
///
public String ParentIDs { get; set; }
public const string CN_PARENTIDS = "ParentIDs";
///
/// Desc:
/// Default:
/// Nullable:False
///
public string CategoryName { get; set; }
public const string CN_CATEGORYNAME = "CategoryName";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string CategoryNickname { get; set; }
public const string CN_CATEGORYNICKNAME = "CategoryNickname";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string CategoryType { get; set; }
public const string CN_CATEGORYTYPE = "CategoryType";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string IsMainCategory { get; set; }
public const string CN_ISMAINCATEGORY = "IsMainCategory";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string CreateUser { get; set; }
public const string CN_CREATEUSER = "CreateUser";
///
/// Desc:
/// Default:
/// Nullable:True
///
public DateTime? CreateDate { get; set; }
public const string CN_CREATEDATE = "CreateDate";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string ModifyUser { get; set; }
public const string CN_MODIFYUSER = "ModifyUser";
///
/// Desc:
/// Default:
/// Nullable:True
///
public DateTime? ModifyDate { get; set; }
public const string CN_MODIFYDATE = "ModifyDate";
///
/// Desc:Y摸Τ N摸礚
/// Default:
/// Nullable:True
///
public string Effective { get; set; }
public const string CN_EFFECTIVE = "Effective";
///
/// Desc:Y埃 Nゼ埃
/// Default:N
/// Nullable:True
///
public string DelStatus { get; set; }
public const string CN_DELSTATUS = "DelStatus";
///
/// 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";
}
}