using System.ComponentModel.DataAnnotations.Schema;
namespace YLErp.Model
{
[NotMapped]
public class SyntheticUnderlyingDto : SyntheticUnderlying
{
///
/// 预付金比例(百分比数值)
///
public double? MarginRate { get; set; }
///
/// 波动率变化(百分比数值)
///
public string VolatilityRate { get; set; }
///
/// 涨跌停板幅度
///
public string UpDownLimit { get; set; }
public string UnderlyingName { get; set; }
///
///
///
public IEnumerable UnderlyingList { get; set; }
}
}