using SqlSugar;
namespace WMS.BZModels.Models.UserCenterManager
{
[Tenant("usercenter")]
[SugarTable("Sys_Dictionary")]
public class SysDictionary : BaseModel
{
///
/// No
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
public string No { get; set; }
///
/// PNo
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
public string PNo { get; set; }
///
/// IsStop
///
[SugarColumn(ColumnDataType = "int", IsNullable = false)]
public int IsStop { get; set; }
///
/// IsEnum
///
[SugarColumn(ColumnDataType = "int", IsNullable = false)]
public int IsEnum { get; set; }
///
/// Code
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
public string Code { get; set; }
///
/// Num
///
[SugarColumn(ColumnDataType = "int", IsNullable = false)]
public int Num { get; set; }
///
/// Name
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false)]
public string Name { get; set; }
}
}