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
using RiskControl.NewService.QiChaCha.QccEntity;
using SqlSugar;
 
namespace RiskControl.NewService.Entity.QccDbEntity
{
    /// <summary>
    /// 疑似实际控制人信息
    /// </summary>
    public class QccSuspectedActualControl:QccBaseEntity
    {
        /// <summary>
        /// 公司keyno
        /// </summary>
        public string KeyNo { get; set; }
        /// <summary>
        /// 更新时间
        /// </summary>
        public string UpdateTime { get; set; }
 
        /// <summary>
        /// 疑似实际控股人分析数据
        /// </summary>
        [SugarColumn(IsJson = true)]
        public ControllerData ControllerData { get; set; }
 
        /// <summary>
        /// 公示的疑似实际控股人
        /// </summary>
        [SugarColumn(IsJson = true)]
        public ActualControl ActualControl { get; set; }
    }
}