|
|
|
@ -32,41 +32,39 @@ namespace DS.WMS.Core.Code.Entity
|
|
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "用户名称", IsNullable = true, Length = 100)]
|
|
|
|
|
public string UserName { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 模板ID
|
|
|
|
|
/// 可视模板Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "模板ID")]
|
|
|
|
|
public long TemplateId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 模板名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "模板名称", IsNullable = false, Length = 200)]
|
|
|
|
|
public string TemplateName { get; set; }
|
|
|
|
|
|
|
|
|
|
[SugarColumn(ColumnDescription = "可视模板Id")]
|
|
|
|
|
public long VisibleTemplateId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 权限实体
|
|
|
|
|
/// 可视权限模板范围
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "权限实体", IsNullable = false, Length = 100)]
|
|
|
|
|
public string PermissionEntity { get; set; }
|
|
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "可视权限模板范围", IsNullable = false, Length = 200)]
|
|
|
|
|
public string VisibleRuleScope { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 中文视图名
|
|
|
|
|
/// 可视权限模板范围名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "中文视图名", IsNullable = true, Length = 50)]
|
|
|
|
|
public string ColumnView { get; set; }
|
|
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "可视权限模板范围名称", IsNullable = false, Length = 200)]
|
|
|
|
|
public string VisibleRuleScopeName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 权限规则
|
|
|
|
|
/// 操作模板Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "权限规则", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
|
|
|
|
|
public string DataRules { get; set; }
|
|
|
|
|
[SugarColumn(ColumnDescription = "操作模板Id")]
|
|
|
|
|
public long OperatorTemplateId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 数据权限描述
|
|
|
|
|
/// 操作权限模板范围
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "操作权限模板范围", IsNullable = false, Length = 200)]
|
|
|
|
|
public string OperatorRuleScope { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 操作权限模板范围名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "数据权限描述", IsNullable = true, Length = 200)]
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "操作权限模板范围名称", IsNullable = false, Length = 200)]
|
|
|
|
|
public string OperatorRuleScopeName { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 状态
|
|
|
|
|
/// </summary>
|
|
|
|
|