基础服务api
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

32 lines
772 B

  1. using BPA.SAAS.Manage.Comm.Enum;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPA.SAAS.Manage.Application.System.Dtos
  8. {
  9. public class DictDataDto
  10. {
  11. public string Id { get; set; }
  12. /// <summary>
  13. /// 字典类型id
  14. /// </summary>
  15. public string TypeId { get; set; }
  16. /// <summary>
  17. /// 字典值
  18. /// </summary>
  19. public string Value { get; set; }
  20. /// <summary>
  21. /// 字典编码
  22. /// </summary>
  23. public string Code { get; set; }
  24. public string Status { get; set; }
  25. /// <summary>
  26. /// 备注
  27. /// </summary>
  28. public string Remark { get; set; }
  29. }
  30. }