| 12345678910111213141516171819202122232425 |
- using MadRunFabric.Common;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace ConfigurationApi.Models.Input
- {
- public class AppModuleInfoInput
- {
- public string id { get; set; }
- public string code { get; set; } = "";
- public string name { get; set; } = "";
- /// <summary>
- /// type表示类型 为1的时候表示APP 为2的时候表示微信
- /// </summary>
- public int type { get; set; } = 1;
- public int flag { get; set; } = 1;
- public string remark { get; set; } = "";
- public int sort { get; set; } = 1;
- public List<FileBaseModel> imgurl { get; set; }
- }
- }
|