123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- using Newtonsoft.Json;
- namespace Vo.Admin
- {
-
-
-
- public class GetPriLoopSetListVo
- {
-
-
-
- public int id { get; set; }
-
-
-
- public int listId { get; set; }
-
-
-
- public string loopModel { get; set; }
-
-
-
- public string parentField { get; set; }
-
-
-
- public string sonField { get; set; }
-
-
-
- public bool afterPrizeFlag { get; set; }
-
-
-
- public string? conditionMode { get; set; }
-
-
-
- public int databaseId { get; set; }
- }
- }
|