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.
41 lines
990 B
C#
41 lines
990 B
C#
9 months ago
|
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 Code { 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;
|
||
|
|
||
|
}
|