using System; using System.Collections.Generic; using GxPress.EnumConst; namespace GxPress.Result.Process { /// /// 流程表单定义 /// public class ProcessFormSettingResult { /// /// 字段id /// public int Id { get; set; } /// /// 流程id /// public int ProcessId { get; set; } /// /// 字段显示名称 /// public string Label { get; set; } /// /// 字段类型 /// ProcessFieldType /// public string Type { get; set; } /// /// 输入提示 /// public string Placeholder { get; set; } /// /// 单位 /// public string Unit { get; set; } /// /// 是否必填(只有必填项才可以作为审批条件) /// public bool Required { get; set; } /// /// 排序 /// public int Sort { get; set; } /// /// 字段选项 /// public IEnumerable Options { get; set; } } }