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

26 lines
582 B
C#

using System.ComponentModel.DataAnnotations.Schema;
namespace YLErp.DBModels
{
/// <summary>
/// 分红率
/// </summary>
[Table("underlying_dividend")]
public class UnderlyingDividend : DBModelWithOperator
{
public DateTime ValueDate { get; set; }
public int UnderlyingId { get; set; }
public double DividendRate { get; set; }
}
[NotMapped]
public class UnderlyingDividendDto : UnderlyingDividend
{
public string UnderlyingCode { get; set; }
public string UnderlyingName { get; set; }
}
}