using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace APT.BaseData.Domain.ApiModel.FM { public class EntityModel { public EntityModel() { this.ID = Guid.NewGuid(); } public Guid ID { get; set; } /// /// 显示名称 /// public string Label { get; set; } /// /// 实体或者表名称 /// public string EntityName { get; set; } /// /// 所属模块 /// public int ModuleType { get; set; } } public class EntityFieldModel { public EntityFieldModel() { //this.ID = Guid.NewGuid(); } public string ID { get; set; } /// /// 字段类型 EntityFieldTypeEnum /// public int FieldType { get; set; } /// /// 显示名称 /// public string Label { get; set; } /// /// 字段名称 /// public string Field { get; set; } public string NavField { get; set; } /// /// 用于配置图片的字段类型(树/表)PFFieldTypeEnum /// public int FIELD_TYPE { get; set; } /// /// 字段类型名称 /// public string FieldTypeName { get; set; } /// /// 字段实体或者表名称 /// public string FieldEntityName { get; set; } /// /// 字段信息 /// public string FieldInfo { get; set; } } }