|
@@ -0,0 +1,25 @@
|
|
|
+
|
|
|
+using System.ComponentModel;
|
|
|
+using XF.Domain.Entities;
|
|
|
+
|
|
|
+namespace Hotline.Settings
|
|
|
+{
|
|
|
+ [Description("数据权限 表")]
|
|
|
+ public class SystemDataTable: CreationEntity
|
|
|
+ {
|
|
|
+ /// <summary>
|
|
|
+ /// 别名
|
|
|
+ /// </summary>
|
|
|
+ public string DisplayName { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 表名
|
|
|
+ /// </summary>
|
|
|
+ public string TableName { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 实体名
|
|
|
+ /// </summary>
|
|
|
+ public string EntityName { get; set; }
|
|
|
+ }
|
|
|
+}
|