using System.ComponentModel.DataAnnotations.Schema; namespace YLErp.DBModels { [Table("dividend_history")] public partial class dividend_history : DBModelWithOperator { /// /// 更新收益率类型 /// public const string StockDividendType = "DividendRate"; /// /// 是否当前使用标签 /// public const string LatestState = "latest"; public static string LogClass = "股票分红率历史记录"; public string State { get; set; } /// /// 股票代码 /// [DisplayName("股票代码")] public string StockCode { get; set; } /// /// 股票id /// [DisplayName("股票信息")] public int? StockId { get; set; } /// /// 估值日期 /// [DisplayName("估值日期")] public DateTime? ValueDate { get; set; } /// /// 数据 /// [DisplayName("数据")] public double? Data { get; set; } /// /// 操作类型 /// [DisplayName("操作类型")] public string Type { get; set; } } }