You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
991 B
C#

using DS.Module.Core;
12 months ago
using DS.Module.Core.Data;
namespace DS.WMS.Core.System.Entity;
[SqlSugar.SugarTable("sys_data_rule")]
public class SysDataRule : BaseTenantModel<long>
12 months ago
{
/// <summary>
/// 资源标识权限ID
/// </summary>
public long PermissionId { get; set; }
12 months ago
/// <summary>
/// 权限实体
12 months ago
/// </summary>
public string PermissionEntity { get; set; }
12 months ago
/// <summary>
/// 状态
12 months ago
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "状态")]
public StatusEnum? Status { get; set; } = StatusEnum.Enable;
/// <summary>
/// 中文视图名
/// </summary>
public string ColumnView { get; set; }
12 months ago
/// <summary>
/// 权限规则
/// </summary>
public string DataRules { get; set; }
/// <summary>
/// 数据权限描述
/// </summary>
public string Description { get; set; }
/// <summary>
/// 排序号
/// </summary>
public string OrderNo { get; set; }
12 months ago
}