颐和api

AppModuleInfoDto.cs 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using MadRunFabric.Common;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6. namespace ConfigurationApi.Models.Dto
  7. {
  8. public class AppModuleInfoDto
  9. {
  10. public string function_id { get; set; }
  11. public string project_id { get; set; }
  12. public string module_id { get; set; } = "";
  13. public string module_name { get; set; } = "";
  14. /// <summary>
  15. /// type类型 1表示APP 2表示微信
  16. /// </summary>
  17. public int type { get; set; } = 1;
  18. public List<FileBaseModel> module_imgurl { get; set; }
  19. public string module_remark { get; set; } = "";
  20. public string module_code { get; set; }
  21. public int flag { get; set; } = 1;
  22. /// <summary>
  23. /// 项目排序 也就是特殊的项目 可能会对模块顺序有要求
  24. /// </summary>
  25. public int project_sort { get; set; } = 1;
  26. /// <summary>
  27. /// 常规排序 也就是在模块中配置的排序,一般遵循此规则
  28. /// </summary>
  29. public int module_sort { get; set; } = 1;
  30. }
  31. }