| | |
| | | using MediatR; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | |
| | | /// <summary> |
| | | /// 查询个人用户登录信息 |
| | | /// </summary> |
| | | [Resource([EnumResourceController.Auth])] |
| | | [Resource([EnumResourceController.UserServerAuth])] |
| | | public class GetPersonalLoginInfoQuery : IRequest<GetPersonalLoginInfoQueryResult> |
| | | { |
| | | |
| | |
| | | public string Name { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 手机号 |
| | | /// </summary> |
| | | /// <remarks>联系电话</remarks> |
| | | public string ContactPhoneNumber { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 是否实名 |
| | | /// </summary> |
| | | public bool IsReal { get; set; } |