init lserp cs 5.0

This commit is contained in:
cyf
2026-07-10 15:25:05 +08:00
commit 90f3fda86a
3799 changed files with 976868 additions and 0 deletions
@@ -0,0 +1,27 @@
using System;
namespace Zhaizj.Framework.ORM {
/// <summary>
/// 表名称批注,用于标识对象在数据库中对应的表名称
/// </summary>
[Serializable, AttributeUsage( AttributeTargets.Class )]
public class TableAttribute : Attribute {
private String _tableName;
public TableAttribute( String tableName ) {
_tableName = tableName;
}
public String TableName {
get {
return _tableName;
}
set {
_tableName = value;
}
}
}
}