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