using Newtonsoft.Json; namespace Vo.Admin { /// /// 详情 /// public class GetPriConditionQueryVo { /// /// ID /// public int id { get; set; } /// /// 配置ID /// public int listId { 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 string groupNo { get; set; } } }