using System.Collections.Generic;
namespace GxPress.Entity.WorkProcessDto
{
///
/// 条件
///
public class Condition
{
///
/// 流程表单字段id
///
public int FieldId { get; set; }
///
/// 操作符(Equals值等于, NotEquals值不等于, GreatThan值大于, LessThan值小于, In值属于, NotIn值不属于)
///
public string Operator { get; set; }
///
/// 字符串
///
public string StringValue { get; set; }
///
/// 字符串数组
///
public IEnumerable StringValues { get; set; }
///
/// 数值
///
public int IntValue { get; set; }
///
/// 优先级
///
public int Sort { get; set; }
}
}