using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YLErp.Model.HengTaiModel { public class BondMarket { /// /// /// public string firmFlag { get; set; } /// /// 全价 /// public decimal fullPrice { get; set; } /// /// /// public string internalFlag { get; set; } /// /// /// public string mdEntryDate { get; set; } /// /// /// public string mdEntryId { get; set; } /// /// 收益率 /// public decimal mdEntryPx { get; set; } /// /// /// public int mdEntrySize { get; set; } /// /// /// public string mdEntryTime { get; set; } /// /// /// public string mdEntryType { get; set; } /// /// /// public string mdPriceLevel { get; set; } /// /// 净价 /// public decimal netPrice { get; set; } /// /// 债券id /// public string securityId { get; set; } /// /// /// public string settlType { get; set; } /// /// 债券名称 /// public string symbol { get; set; } /// /// /// public string venueTypeGw { get; set; } /// /// /// public string venues { get; set; } } }