namespace Znyc.Recruitment.Admin.Security.Dtos { /// /// 与小程序缓存保持一致 /// public class DictionaryListOutput { /// /// 主键Id /// public long Id { get; set; } /// /// 父级Id /// public long ParentId { get; set; } /// /// 字典编码 /// public string Code { get; set; } /// /// 字典值 /// public string Value { get; set; } } }