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.

98 lines
3.4 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using DS.Module.Core;
using DS.Module.Core.Data;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Code.Entity
{
/// <summary>
/// 数据权限
/// </summary>
[SqlSugar.SugarTable("code_data_rule", "数据权限")]
public class CodeDataRule : BaseModel<long>
{
/// <summary>
/// 资源标识权限ID
/// </summary>
[SugarColumn(ColumnDescription = "资源标识权限ID")]
public long PermissionId { get; set; }
/// <summary>
/// 权限模板类型
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "权限模板类型", IsNullable = false, Length = 200)]
public string TemplateName { get; set; }
/// <summary>
/// 权限描述
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "权限描述", IsNullable = true, Length = 200)]
public string Description { get; set; }
/// <summary>
/// 权限实体
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "权限实体", IsNullable = false, Length = 100)]
public string PermissionEntity { get; set; }
/// <summary>
/// 用户Id
/// </summary>
[SugarColumn(ColumnDescription = "用户Id")]
public long UserId { get; set; }
/// <summary>
/// 用户名称
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "用户名称", IsNullable = true, Length = 100)]
public string UserName { get; set; }
/// <summary>
/// 可视模板Id
/// </summary>
[SugarColumn(ColumnDescription = "可视模板Id", IsNullable = true)]
public long? VisibleTemplateId { get; set; }
/// <summary>
/// 可视权限模板范围
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "可视权限模板范围", IsNullable = true, Length = 200)]
public string VisibleRuleScope { get; set; }
/// <summary>
/// 可视权限模板范围名称
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "可视权限模板范围名称", IsNullable = true, Length = 200)]
public string VisibleRuleScopeName { get; set; }
/// <summary>
/// 操作模板Id
/// </summary>
[SugarColumn(ColumnDescription = "操作模板Id", IsNullable = true)]
public long? OperateTemplateId { get; set; }
/// <summary>
/// 操作权限模板范围
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "操作权限模板范围", IsNullable = true, Length = 200)]
public string OperateRuleScope { get; set; }
/// <summary>
/// 操作权限模板范围名称
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "操作权限模板范围名称", IsNullable = true, Length = 200)]
public string OperateRuleScopeName { get; set; }
/// <summary>
/// 状态
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "状态")]
public StatusEnum? Status { get; set; } = StatusEnum.Enable;
/// <summary>
/// 排序号
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "排序号", IsNullable = true, DefaultValue = "100")]
public int OrderNo { get; set; }
}
}