| | |
| | | using MediatR; |
| | | using Mapster; |
| | | using MediatR; |
| | | using Newtonsoft.Json; |
| | | using Swashbuckle.AspNetCore.Annotations; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.ComponentModel.DataAnnotations; |
| | |
| | | /// <summary> |
| | | /// 查询用户简历-详细信息 |
| | | /// </summary> |
| | | [Resource([EnumResourceController.UserResume])] |
| | | [Resource([EnumResourceController.UserServerUserResume])] |
| | | public class GetUserResumeDetailQuery : IRequest<GetUserResumeDetailQueryResult> |
| | | { |
| | | |
| | |
| | | /// <summary> |
| | | /// 生活照 |
| | | /// </summary> |
| | | public List<string> Photos { get; set; } |
| | | [JsonIgnore, SwaggerIgnore] |
| | | public List<GetUserResumeQueryResultPhoto> Photos { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 生活照 |
| | | /// </summary> |
| | | [AdaptIgnore] |
| | | [JsonProperty("photos")] |
| | | public List<string> PhotoImgs => Photos.Select(it => it.Img).ToList(); |
| | | } |
| | | } |