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
1.0 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Code.Dtos
{
/// <summary>
/// 分配数据权限范围
/// </summary>
public class AssignDataRuleScopeReq
{
/// <summary>
/// 主键Id
/// </summary>
public long Id { get; set; }
/// <summary>
/// 用户Id
/// </summary>
public long UserId { get; set; }
/// <summary>
/// 模板Id
/// </summary>
public long TemplateId { get; set; }
/// <summary>
/// 权限类型 visible 可视范围 operate 操作范围
/// </summary>
public string RuleType { get; set; } = "visible";
/// <summary>
/// 权限模板范围
/// </summary>
public string RuleScope { get; set; }
/// <summary>
/// 权限模板范围名称
/// </summary>
public string RuleScopeName { get; set; }
}
}