using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace djy.Paas.Model { /// /// 数据字典Dto /// public class sysDictDto { /// /// 索引排序 /// public int Indexint { get; set; } = 0; /// /// 分组名称 /// public string GroupName { get; set; } /// /// key键值 /// public string Key { get; set; } /// /// value内容 /// public string Value { get; set; } /// /// 显示标题 /// public string Title { get; set; } /// /// 备注信息 /// public string Memo { get; set; } } }