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
using System.Collections.Generic;
using RiskControl.NewService.QiChaCha.QccEntity;
using SqlSugar;
 
namespace RiskControl.NewService.Entity.QccDbEntity
{
    /// <summary>
    /// 股权穿透信息
    /// </summary>
    public class QccEquityThrough:QccBaseEntity
    {
        /// <summary>
        /// 企业名称
        /// </summary>
        [SugarColumn(IsIgnore = true)]
        public string Name => CompanyName;
        /// <summary>
        /// 公司KeyNo
        /// </summary>
        public string KeyNo { get; set; }
        /// <summary>
        /// 对应的children数量
        /// </summary>
        public string Count { get; set; }
        /// <summary>
        /// 穿透列表
        /// </summary>
        [SugarColumn(IsJson = true)]
        public List<EquityThroughChildren> Children { get; set; }
    }
}