using System.Collections.Generic; namespace RiskControl.NewService.QiChaCha.QccEntity { /// /// 股权穿透信息-请求参数 /// public class EquityThroughQuery { /// /// 应用APPKEY(应用详细页查询) /// public string key { get; set; } /// /// keyno,公司名,统一社会信用代码 /// public string keyWord { get; set; } } /// /// 股权穿透信息-返回参数(Return) /// public class EquityThroughReturnTotal : BaseResult { } /// /// 股权穿透信息-返回参数(Return) /// public class EquityThroughReturn { /// /// 公司KeyNo /// public string KeyNo { get; set; } /// /// 公司名称 /// public string Name { get; set; } /// /// 对应的children数量 /// public string Count { get; set; } /// /// 穿透列表 /// public List Children { get; set; } /// /// 对外投资企业列表(来着接口企业对外投资穿透) /// public List BreakThroughList { get; set; } public List PathTree { get; set; } } /// /// 穿透列表 /// public class EquityThroughChildren { /// /// 公司KeyNo /// public string KeyNo { get; set; } /// /// 公司名称 /// public string Name { get; set; } /// /// 类型(见企业类型字典) /// public string Category { get; set; } /// /// 出资比例 /// public string FundedRatio { get; set; } /// /// 针对查询企业的出资比例。 /// public string InParentActualRadio { get; set; } /// /// 对应的children数量 /// public string Count { get; set; } /// /// 层级 /// public string Grade { get; set; } /// /// 认缴出资额(万元) /// public string ShouldCapi { get; set; } /// /// 持股数 /// public string StockRightNum { get; set; } /// /// 状态 /// public string ShortStatus { get; set; } /// /// 穿透列表 /// public List Children { get; set; } } }