feat: 删除 TiingoTicker 的 StartDate/EndDate 字段

This commit is contained in:
虾球 2026-03-06 09:33:49 +00:00
parent ebdc704819
commit 0f7213cab8

View File

@ -38,18 +38,6 @@ public class TiingoTicker
[SugarColumn(ColumnDataType = "varchar(10)")]
public string? PriceCurrency { get; set; }
/// <summary>
/// 数据开始日期startDate
/// </summary>
[SugarColumn(IsNullable = true)]
public DateTime? StartDate { get; set; }
/// <summary>
/// 数据结束日期endDate
/// </summary>
[SugarColumn(IsNullable = true)]
public DateTime? EndDate { get; set; }
/// <summary>
/// 创建时间(导入时可空,数据库会自动设置)
/// </summary>