13 lines
262 B
C#
13 lines
262 B
C#
using System;
|
|
|
|
namespace Zhaizj.Framework.ORM {
|
|
|
|
/// <summary>
|
|
/// 小型整数批注,标识此属性对应的数据列为小型整数
|
|
/// </summary>
|
|
[Serializable, AttributeUsage( AttributeTargets.Property )]
|
|
public class TinyIntAttribute : Attribute {
|
|
}
|
|
}
|
|
|