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