admin
2024-09-20 8b7b39172ee548ff303dbd73816cb7c1071f7887
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
using System;
using System.Collections.Generic;
using RiskControl.NewService.QiChaCha.QccEntity;
using SqlSugar;
 
namespace RiskControl.NewService.Entity.QccDbEntity
{
    public class QccFullDetail: QccBaseEntity
    {
        /// <summary>
        /// 公司名称
        /// </summary>
        public string Name { get; set; }
        /// <summary>
        /// 登记机关
        /// </summary>
        public string BelongOrg { get; set; }
        /// <summary>
        /// 法人
        /// </summary>
        public string OperName { get; set; }
        /// <summary>
        /// 状态
        /// </summary>
        public string Status { get; set; }
        /// <summary>
        /// 信用代码
        /// </summary>
        public string CreditCode { get; set; }
        /// <summary>
        /// 注册资本
        /// </summary>
        public string RegistCapi { get; set; }
        /// <summary>
        /// 类型
        /// </summary>
        public string EconKind { get; set; }
        /// <summary>
        /// 地址
        /// </summary>
        public string Address { get; set; }
        /// <summary>
        /// 营业范围
        /// </summary>
        public string Scope { get; set; }
        /// <summary>
        /// 营业期限始
        /// </summary>
        public string TermStart { get; set; }
        /// <summary>
        /// 营业期限至
        /// </summary>
        public string TeamEnd { get; set; }
        /// <summary>
        /// 发照日期
        /// </summary>
        public string CheckDate { get; set; }
        /// <summary>
        /// 行政处罚
        /// </summary>
        [SugarColumn(IsJson = true)]
        public List<Penalty> Penalty { get; set; }
        /// <summary>
        /// 经营异常
        /// </summary>
        [SugarColumn(IsJson = true)]
        public List<Exceptions> Exceptions { get; set; }
        /// <summary>
        /// 股权出质
        /// </summary>
        [SugarColumn(IsJson = true)]
        public List<Pledge> Pledge { get; set; }
        /// <summary>
        /// 行政许可【工商局】
        /// </summary>
        [SugarColumn(IsJson = true)]
        public List<PermissionEciInfo> PermissionEciInfo { get; set; }
        /// <summary>
        /// 投资人及出资信息
        /// </summary>
        [SugarColumn(IsJson = true)]
        public List<Partners> Partners { get; set; }
        /// <summary>
        /// 主要人员
        /// </summary>
        [SugarColumn(IsJson = true)]
        public List<Employees> Employees { get; set; }
        /// <summary>
        /// 变更信息
        /// </summary>
        [SugarColumn(IsJson = true)]
        public List<ChangeRecords> ChangeRecords { get; set; }
 
        /// <summary>
        /// 曾用名
        /// </summary>
        [SugarColumn(IsJson = true)]
        public List<OriginalName> OriginalName { get; set; }
        /// <summary>
        /// 是否上市
        /// </summary>
        public string IsOnStock { get; set; }
    }
}