inputValueSetting.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace wispro.sp.entity.workflowDefine
  7. {
  8. public class InputValueSetting
  9. {
  10. public int Id { get; set; }
  11. /// <summary>
  12. /// 显示名称
  13. /// </summary>
  14. public string DisplayName { get; set; }
  15. /// <summary>
  16. /// 值类型
  17. /// </summary>
  18. public EnumFieldType valueType { get; set; }
  19. /// <summary>
  20. /// 绑定对象属性
  21. /// </summary>
  22. public string bindField { get; set; }
  23. public string bindFieldSavetoObjectCondition { get; set; }
  24. public Action action { get; set; }
  25. public int actionId { get; set; }
  26. /// <summary>
  27. /// 可选项目,多个以“|”隔开
  28. /// 例如:选项一|选项二|选项三
  29. /// </summary>
  30. public string Options { get; set; }
  31. public InputValueSetting ParentSetting { get; set; }
  32. public int? ParentSettingId { get; set; }
  33. }
  34. }