123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- using Newtonsoft.Json;
- namespace Vo.Admin
- {
-
-
-
- public class GetPriConditionQueryVo
- {
-
-
-
- public int id { get; set; }
-
-
-
- public int listId { get; set; }
-
-
-
- public int returnFieldId { get; set; }
-
-
-
- public string fieldQueryKind { get; set; }
-
-
-
- public string fieldQueryModel { get; set; }
-
-
-
- public string fieldQueryValue { get; set; }
-
-
-
- public string fieldQueryValueType { get; set; }
- }
- }
|