44 lines
1.2 KiB
C#
44 lines
1.2 KiB
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace YLErp.DBModels
|
|
{
|
|
[Table("quotefile")]
|
|
public class quotefile : DBModelBaseV2
|
|
{
|
|
/// <summary>
|
|
/// 报价板块 ,例如个股
|
|
/// </summary>
|
|
[DisplayName("报价板块")]
|
|
public string QuoteSection { get; set; }
|
|
/// <summary>
|
|
/// 报价日期
|
|
/// </summary>
|
|
[DisplayName("报价日期")]
|
|
public DateTime QuoteDate { get; set; }
|
|
/// <summary>
|
|
/// 报价文件名称
|
|
/// </summary>
|
|
[DisplayName("报价文件名")]
|
|
public string FileName { get; set; }
|
|
/// <summary>
|
|
/// 报价文件路径
|
|
/// </summary>
|
|
[DisplayName("报价文件路径")]
|
|
public string FilePath { get; set; }
|
|
/// <summary>
|
|
/// 免责申明
|
|
/// </summary>
|
|
[DisplayName("免责申明")]
|
|
public string Disclaimer { get; set; }
|
|
/// <summary>
|
|
/// M1-M6日期
|
|
/// {
|
|
/// "M1":"2022-08-19",
|
|
/// "M2":"2022-10-19"
|
|
/// }
|
|
/// </summary>
|
|
[DisplayName("M1-M6")]
|
|
public string MJson { get; set; }
|
|
}
|
|
}
|