Files
zszq-trs/Framework/YLErp.Core/DBModels/UnderlyingSpanTwo.cs
T
2024-05-09 14:06:26 +08:00

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; }
}
}