mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-18 23:46:37 +08:00
19 lines
392 B
C#
19 lines
392 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using Yi.Furion.Core.Rbac.Enums;
|
|||
|
|
|
|||
|
|
namespace Yi.Furion.Core.Rbac.Dtos.Role
|
|||
|
|
{
|
|||
|
|
public class UpdateDataScpoceInput
|
|||
|
|
{
|
|||
|
|
public long RoleId { get; set; }
|
|||
|
|
|
|||
|
|
public List<long>? DeptIds { get; set;}
|
|||
|
|
|
|||
|
|
public DataScopeEnum DataScope { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|