using System.ComponentModel.DataAnnotations.Schema; namespace YLErp.DBModels { /// /// 分红率 /// [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; } } }