1
yhj
2024-07-24 5e5d945e91568b973faa27d8ab0bcef99fc4a6c5
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
    {
    }
}