You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- namespace Learun.Application.WorkFlow
- {
- /// <summary>
- /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
- /// Copyright (c) 2013-2018 北京泉江科技有限公司
- /// 创建人:陈彬彬
- /// 日 期:2017.04.17
- /// 描 述:工作流流转字段条件
- /// </summary>
- public class WfCondition
- {
- /// <summary>
- /// 字段名称
- /// </summary>
- public string fieldName { get; set; }
- /// <summary>
- /// 字段Id
- /// </summary>
- public string fieldId { get; set; }
- /// <summary>
- /// 比较类型1.等于2.不等于3.大于4.大于等于5.小于6.小于等于7.包含8.不包含9.包含于10.不包含于
- /// </summary>
- public int compareType { get; set; }
- /// <summary>
- /// 数据值
- /// </summary>
- public string value { get; set; }
- }
- }
|