using Newtonsoft.Json;
namespace Vo.Admin
{
///
/// 列表
///
public class GetPriConditionListVo
{
///
/// 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; }
}
}