using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YLErp.Model.HengTaiModel
{
public class BondCalcResp
{
///
/// 债券代码
///
public string bondId { get; set; }
///
/// 定价日
///
public string valueDate { 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; }
///
/// 全价
///
public decimal dirtyPrice { get; set; }
///
/// 净价
///
public decimal cleanPrice { get; set; }
///
/// 到期收益率
///
public decimal YTM { get; set; }
///
/// 应计利息
///
public decimal Al { get; set; }
///
/// 麦克劳林久期
///
public decimal MD { get; set; }
///
/// 修正久期
///
public decimal AD { get; set; }
///
/// 凸性
///
public decimal CV { get; set; }
///
/// 基点价值
///
public decimal DVBP { get; set; }
///
/// 剩余期限
///
public decimal remainTerm { get; set; }
///
/// 关键基点价值
///
public decimal KDVBP { get; set; }
///
/// 关键久期
///
public decimal KD { get; set; }
public string errMsg { get; set; }
public string errCode { get; set; }
}
}