#region using System; using System.ComponentModel; #endregion namespace CSFrameworkV5.Interfaces.InterfaceModels { [Description("sys_DataPermission")] public class DataPermissionModel { public string AllFields { get; set; } public string AllowColumns { get; set; } public int ColumnCount { get; set; } public DateTime CreateTime { get; set; } public string DataID { get; set; } public string DataSetID { get; set; } public string DataType { get; set; } public string DBName { get; set; } public int isid { get; set; } public string RowID { get; set; } public string TableName { get; set; } } }