using System.Collections.Generic; using RiskControl.NewService.QiChaCha.QccEntity; using SqlSugar; namespace RiskControl.NewService.Entity.QccDbEntity { /// /// 股权质押核查(IPO上市公司)-质押比例信息 /// public class QccIPOStockRightPledgeCheckHolderProportion:QccBaseEntity { [SugarColumn(IsJson = true)] public List TradeDateList { get; set; } [SugarColumn(IsJson = true)] public ProportionInfo ProportionInfo { get; set; } /// /// 股票代码 /// public string StockCode { get; set; } /// /// 质押日期,格式为yyyy-MM-dd,默认为最新日期 /// public string TradeDate { get; set; } } }