using System.Collections.Generic; namespace GxPress.Entity.WorkProcessDto { /// /// 流程表单字段 /// public class FormField { /// /// 字段唯一标识 /// public int Id { get; set; } /// /// 字段显示名称 /// public string Label { get; set; } /// /// 字段类型(Text,TextArea,Number,Currency,DateTime,Picture,Attachment,Radio,CheckBox) /// 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; } /// /// 字段值 /// public string Value { get; set; } } }