UserRoleInput.cs 425 B

1234567891011121314151617181920
  1. using System.Collections.Generic;
  2. namespace Admin.NET.Core.Service
  3. {
  4. /// <summary>
  5. /// 授权用户角色
  6. /// </summary>
  7. public class UserRoleInput : BaseIdInput
  8. {
  9. /// <summary>
  10. /// 机构Id
  11. /// </summary>
  12. public long OrgId { get; set; }
  13. /// <summary>
  14. /// 角色Id列表
  15. /// </summary>
  16. public List<long> RoleIdList { get; set; }
  17. }
  18. }