You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-
- using System;
-
- namespace DataSendApi.Program.CustomizeAttribute
- {
- /// <summary>
- /// 自定义特性
- /// </summary>
- public class CustomizeTableAttribute : Attribute
- {
- /// <summary>
- /// 中文表名
- /// </summary>
- public string ChineseTableName { get; set; }
- /// <summary>
- /// 数据库表明
- /// </summary>
- public string DatabaseTableName { get; set; }
- }
- }
|