13 lines
271 B
C#
13 lines
271 B
C#
using System;
|
|
namespace Zhaizj.Framework.ORM {
|
|
|
|
/// <summary>
|
|
/// 长文本批注,标识此属性对应的数据列允许接受长文本字符串
|
|
/// </summary>
|
|
[Serializable, AttributeUsage( AttributeTargets.Property )]
|
|
public class LongTextAttribute : Attribute {
|
|
}
|
|
|
|
}
|
|
|