namespace Bootstrap.DataAccess { /// /// 字典表实体 /// author:renshuo /// date:2016.10.27 /// public class Dict { /// /// 字典主键 /// 数据库自增 /// public int ID { get; set; } /// /// 分类 /// public string Category { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 代号 /// public string Code { get; set; } /// /// 1表示系统使用,0表示用户自定义 /// 默认为1 /// public int Define { get; set; } } }