using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YLErp.Model.HengTaiModel { public class BondCalcReq { /// /// 债券代码 必填,格式为"券名,资产类型,市场类型" "220210,SPT_BD,X_CNBD" /// public string bondId { get; set; } /// /// 定价日 必填 /// public string valueDate { get; set; } /// /// 价格类型 必填 DP(全价)CP(净价)YD(到期收益率) /// public string priceType { get; set; } /// /// 价格 必填 /// public decimal price { get; set; } /// /// 清算速度 必填 /// public string settleType { get; set; } /// /// 请求编号 /// public string requestId { get; set; } /// /// 请求时间 /// public string requestTime { get; set;} /// /// 买卖方向 /// public string direction { get; set; } /// /// 保留字段1 /// public string reserver1 { get; set; } /// /// 保留字段2 /// public string reserver2 { get; set; } } }