SysdictDataDto.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. namespace ZR.Model.System.Dto
  2. {
  3. public class SysdictDataParamDto
  4. {
  5. public string DictType { get; set; }
  6. //public string ColumnName { get; set; }
  7. public List<SysDictDataDto> List { get; set; }
  8. }
  9. public class SysDictDataDto
  10. {
  11. public string DictLabel { get; set; }
  12. public string DictValue { get; set; }
  13. public string DictType { get; set; }
  14. public string CssClass { get; set; } = string.Empty;
  15. public string ListClass { get; set; } = string.Empty;
  16. /// <summary>
  17. /// 多语言翻译key值
  18. /// </summary>
  19. public string LangKey { get; set; } = string.Empty;
  20. /// <summary>
  21. /// 扩展1
  22. /// </summary>
  23. public string Extend1 { get; set; }
  24. /// <summary>
  25. /// 扩展2
  26. /// </summary>
  27. public string Extend2 { get; set; }
  28. #region uniapp返回字段
  29. public string Label { get; set; }
  30. public string Value { get; set; }
  31. #endregion
  32. }
  33. }