using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.App.FormScheme.Response { public class FormComponentNewModel { /// /// 组件类型 /// public string Component { get; set; } /// /// 标识 /// public string Field { get; set; } /// /// 名称 /// public string Label { get; set; } /// /// 绑定表 /// public ComponentPropsModel ComponentProps { get; set; } /// /// 单据编码 /// public string Code { get; set; } /// /// 排序字段 /// public string OrderId { get; set; } /// /// 是否倒叙 /// public bool isDESC { get; set; } /// /// 数据字段类型 /// public string CsType { get; set; } /// /// 子组件列表 /// public List children { get; set; } /// /// 子表组件列表 /// public List Columns { get; set; } } }