using Furion.Extras.Admin.NET.Util.LowCode.Enum; using System.Reflection; namespace Furion.Extras.Admin.NET.Util.LowCode.Factor.Interface { public interface IFactor { /// /// 字段绑定 /// PropertyInfo Field { get; set; } /// /// 字段描述 /// string Describe { get; set; } /// /// 字段名 /// string FieldName { get; set; } /// /// 字段类型 /// FieldType FieldType { get; } /// /// 数据库类型 /// string DbType { get; } } }