| | |
| | | using MediatR; |
| | | using Mapster; |
| | | using MediatR; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | |
| | | /// <summary> |
| | | /// 查询企业信息分页列表数据 |
| | | /// </summary> |
| | | public class GetEnterprisesQuery : PagedListQuery<PagedListQueryResult<GetEnterprisesQueryResultItem>, GetEnterprisesQueryResultItem>, IRequest<PagedListQueryResult<GetEnterprisesQueryResultItem>> |
| | | [Resource([EnumResourceController.Enterprise])] |
| | | public class GetEnterprisesQuery : PagedListQuery<PagedListQueryResult<GetEnterprisesQueryResultItem>, GetEnterprisesQueryResultItem> |
| | | { |
| | | /// <summary> |
| | | /// 关键字 |
| | | /// </summary> |
| | | public string Keywords { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 是否已配置 |
| | | /// </summary> |
| | | public bool? IsConfigured { get; set; } |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 查询企业信息分页列表数据 |
| | | /// 查询企业信息分页列表数据-结果-项 |
| | | /// </summary> |
| | | public class GetEnterprisesQueryResultItem |
| | | { |
| | | /// <summary> |
| | | /// Id |
| | | /// </summary> |
| | | public Guid Id { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 企业全称 |
| | | /// </summary> |
| | | public string EnterpriseName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 法人姓名 |
| | | /// </summary> |
| | | public string LegalPerson { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 统一社会信用代码 |
| | | /// </summary> |
| | | public string SocietyCreditCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 是否实名 |
| | | /// </summary> |
| | | public bool IsReal { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 联系人 |
| | | /// </summary> |
| | | public string Contacts { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 联系电话 |
| | | /// </summary> |
| | | public string ContactPhoneNumber { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 所在省份 |
| | | /// </summary> |
| | | public string ProvinceContent { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 所在城市 |
| | | /// </summary> |
| | | public string CityContent { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 所属行业 |
| | | /// </summary> |
| | | public string IndustryTypeContent { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 是否已配置 |
| | | /// </summary> |
| | | public bool IsConfigured { get; set; } |
| | | } |
| | | } |