namespace GxPress.Entity.WorkFlowDto { /// /// 流程表单字段 /// public class FlowField { /// /// 字段唯一标识 /// public int Id { get; set; } /// /// 字段类型 /// public string Type { get; set; } /// /// 字段显示名称 /// public string Value { get; set; } } }