using System.Collections.Generic; namespace APT.BaseData.Domain.ApiModel.Platform { /// /// 控件配置模型 /// public class ControlModel { /// /// 选项options /// public List Options { get; set; } /// /// 默认值 /// public List DefaultValue { get; set; } } public class ControlNodelModel { /// /// 值 /// public string Value { get; set; } /// /// 名称 /// public string Label { get; set; } /// /// 子节点 /// public List Children { get; set; } } /// /// 穿梭框实体 /// public class TransferModal { public string key { get; set; } public string title { get; set; } } }