|
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; } //备注
|
}
|
}
|