schangxiang@126.com
2024-04-23 f47411fb53aeee0c7bd514cbc841f9030349f448
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using Furion.Extras.Admin.NET.Util.LowCode.Enum;
using System.Reflection;
 
namespace Furion.Extras.Admin.NET.Util.LowCode.Factor.Interface
{
    public interface IFactor
    {
        /// <summary>
        /// 字段绑定
        /// </summary>
        PropertyInfo Field { get; set; }
 
        /// <summary>
        /// 字段描述
        /// </summary>
        string Describe { get; set; }
 
        /// <summary>
        /// 字段名
        /// </summary>
        string FieldName { get; set; }
 
        /// <summary>
        /// 字段类型
        /// </summary>
        FieldType FieldType { get; }
 
        /// <summary>
        /// 数据库类型
        /// </summary>
        string DbType { get; }
    }
}