|
using System;
|
|
namespace Model
|
{
|
//字典数据表
|
public class SysDictData
|
{
|
public string DictId { get; set; } //主键ID
|
|
public string DictValue { get; set; } //字典键值
|
|
public string DictLabel { get; set; } //字典标签
|
|
public string DictType { get; set; } //字典类型编码
|
|
public int DictSort { get; set; } //字典排序
|
|
public int ParanSource { get; set; } //数据来源:0-系统内置;1-用户添加
|
|
public int DelFlag { get; set; } //状态:0-停用;1-正常
|
|
public int Status { get; set; } //状态:0-停用;1-正常
|
|
public string CreateBy { get; set; } //创建者
|
|
public DateTime CreateTime { get; set; } //创建时间
|
|
public string UpdateBy { get; set; } //更新者
|
|
public DateTime UpdateTime { get; set; } //更新时间
|
|
public string Remark { get; set; } //备注
|
}
|
}
|