Blame view

Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/Dtos/User/UserGetListInputVo.cs 466 Bytes
515fceeb   “wangming”   框架初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  using Yi.Framework.Ddd;
  using Yi.Framework.Ddd.Application.Contracts;
  
  namespace Yi.Framework.Rbac.Application.Contracts.Dtos.User
  {
      public class UserGetListInputVo : PagedAllResultRequestDto
      {
          public string? Name { get; set; }
          public string? UserName { get; set; }
          public long? Phone { get; set; }
  
          public bool? State { get; set; }
  
          public Guid? DeptId { get; set; }
  
          public string? Ids { get; set; }
      }
  }