using Newtonsoft.Json;
namespace Vo.Admin
{
///
/// 列表
///
public class GetPriRecursionStartConditionListVo
{
///
/// ID
///
public int id { get; set; }
///
/// 递归配置ID
///
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; }
///
/// 分组
///
public string groupNo { get; set; }
}
}