using System.ComponentModel.DataAnnotations.Schema;
namespace YLErp.Model
{
[NotMapped]
public class Underlying_BasiscurveDot
{
///
/// 主键
///
public int id { get; set; }
///
/// 标的品种Id
///
public int VarietyId { get; set; }
///
///标的代码Id
///
public int UnderlyingId { get; set; }
///
/// 标的代码
///
public string UnderlyingCode { get; set; }
///
/// 插值方法
///
public int InterpolationMethod { get; set; }
public IEnumerable InterpolationData { get; set; }
}
public class Underlying_BasiscurveList
{
///
/// 期限
///
public string term { get; set; }
///
/// 标的代码
///
public string UnderlyingCodes { get; set; }
///
/// 基差
///
public double BasisCurve { get; set; }
}
}