12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace SCC.Models
- {
-
-
-
- class SCCSysAttribute
- {
- }
-
-
-
- [AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = false)]
- public sealed class TableNameAttribute : Attribute
- {
- private string _tablename;
- public string TableName { get { return _tablename; } }
-
-
-
-
- public TableNameAttribute(string TableName)
- {
- this._tablename = TableName;
- }
- }
- }
|