zhengyiming
4 天以前 844ef8147c4e61c22d5aa40deab4b026638e1781
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
using Mapster;
using MediatR;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace FlexJobApi.Core
{
    /// <summary>
    /// 查询企业信息分页列表数据
    /// </summary>
    [Resource([EnumResourceController.UserServerEnterprise])]
    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; }
    }
}