123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- using Newtonsoft.Json;
- namespace Vo.Admin
- {
-
-
-
- public class GetPriRecursionStartConditionListVo
- {
-
-
-
- public int id { get; set; }
-
-
-
- public int loopSetId { get; set; }
-
-
-
- public string returnFieldId { get; set; }
-
-
-
- public string fieldQueryKind { get; set; }
-
-
-
- public string fieldQueryModel { get; set; }
-
-
-
- public string fieldQueryValue { get; set; }
-
-
-
- public string fieldQueryValueType { get; set; }
-
-
-
- public decimal prizePercent { get; set; }
-
-
-
- public decimal prizeAmount { get; set; }
-
-
-
- public int startIndex { get; set; }
- }
- }
|