You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.4 KiB
C#
50 lines
1.4 KiB
C#
using DS.Module.Core;
|
|
using DS.Module.Core.Data;
|
|
|
|
namespace DS.WMS.Core.System.Entity;
|
|
/// <summary>
|
|
/// 系统字典值表
|
|
/// </summary>
|
|
[SqlSugar.SugarTable("sys_dict_data")]
|
|
public class SysDictData : BaseModel<long>
|
|
{
|
|
/// <summary>
|
|
/// 字典类型Id
|
|
/// </summary>
|
|
public long TypeId { get; set; }
|
|
/// <summary>
|
|
/// 字典值
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(Length = 100,ColumnDescription="字典值")]
|
|
public string Value { get; set; }
|
|
|
|
/// <summary>
|
|
/// 字典名称
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(Length = 50,ColumnDescription="字典名称")]
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 字典名称(英文)
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(Length = 100,ColumnDescription="字典名称(英文)",IsNullable = true)]
|
|
public string EnName { get; set; }
|
|
/// <summary>
|
|
/// 拓展字段
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(Length = 100,ColumnDescription="拓展字段",IsNullable = true)]
|
|
public string ExpandValue { get; set; }
|
|
/// <summary>
|
|
/// 排序
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "排序")]
|
|
public int? OrderNo { get; set; } = 100;
|
|
|
|
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "状态")]
|
|
public StatusEnum? Status { get; set; } = StatusEnum.Enable;
|
|
|
|
} |