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; }
|
}
|
}
|