wzp
2022-11-02 ecba6cab0840a9014b4e6e96f2f7b89070cc60e1
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
 
using System;
 
namespace Model
{
    //字典类型表
    public class SysDictType
  {
        public string DictId { get; set; }  //主键ID
 
        public string DictType { get; set; }    //字典类型编码
 
        public string DictName { get; set; }    //字典类型名称
 
        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; }  //备注
  }
}