26 lines
576 B
C#
26 lines
576 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace YLErp.DBModels
|
|
{
|
|
/// <summary>
|
|
/// 分红率
|
|
/// </summary>
|
|
[Table("underlying_span_two")]
|
|
public class UnderlyingSpanTwo : DBModelWithOperator
|
|
{
|
|
public DateTime ValueDate { get; set; }
|
|
|
|
public int UnderlyingId { get; set; }
|
|
|
|
public double? SpanRate { get; set; }
|
|
}
|
|
|
|
[NotMapped]
|
|
public class UnderlyingSpanTwoDto : UnderlyingSpanTwo
|
|
{
|
|
public string UnderlyingCode { get; set; }
|
|
|
|
public string UnderlyingName { get; set; }
|
|
}
|
|
}
|