using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace wispro.sp.entity.workflowDefine
{
public class inputValueSetting
{
public int Id { get; set; }
///
/// 显示名称
///
public string DisplayName { get; set; }
///
/// 值类型
///
public EnumFieldType valueType { get; set; }
///
/// 绑定对象属性
///
public string bindField { get; set; }
public string bindFieldSavetoObjectCondition { get; set; }
public step step { get; set; }
public int stepId { get; set; }
///
/// 可选项目,多个以“|”隔开
/// 例如:选项一|选项二|选项三
///
public string Options { get; set; }
}
}