啊鑫
2024-07-11 afbf8700d137710713db61955879d0f5acb73738
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
34
using System;
 
namespace CSFramework.DB
{
    /// <summary>
    /// ORM模型的特性,用于指定该模型对应的物理表名
    /// </summary>
    public class TableInfoAttribute : Attribute
    {
        public TableInfoAttribute(string tableName)
        {
            TableName = tableName;
        }
 
        /// <summary>
        /// 表名
        /// </summary>
        public string TableName { get; set; }
    }
 
    /// <summary>
    /// 忽略更新的字段,Insert,Update脚本不生成该字段
    /// </summary>
    public class IgnoreField : Attribute
    {
    }
 
    /// <summary>
    /// 主键字段
    /// </summary>
    public class KeyField : Attribute
    {
    }
}