颐和api

AppModuleInfoInput.cs 711B

12345678910111213141516171819202122232425
  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.Input
  7. {
  8. public class AppModuleInfoInput
  9. {
  10. public string id { get; set; }
  11. public string code { get; set; } = "";
  12. public string name { get; set; } = "";
  13. /// <summary>
  14. /// type表示类型 为1的时候表示APP 为2的时候表示微信
  15. /// </summary>
  16. public int type { get; set; } = 1;
  17. public int flag { get; set; } = 1;
  18. public string remark { get; set; } = "";
  19. public int sort { get; set; } = 1;
  20. public List<FileBaseModel> imgurl { get; set; }
  21. }
  22. }