yzh
2022-06-20 088ffc818b13bf7bca56eb2f7f323d833fce382c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
 
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; }  //备注
  }
}