删除股票字典表时间字段

This commit is contained in:
niannian zheng 2026-03-06 17:33:39 +08:00
parent 5f0c0e9636
commit 95a29cf86a
2 changed files with 1 additions and 22 deletions

View File

@ -37,26 +37,4 @@ public class TiingoTicker
/// </summary> /// </summary>
[SugarColumn(ColumnDataType = "varchar(10)")] [SugarColumn(ColumnDataType = "varchar(10)")]
public string? PriceCurrency { get; set; } 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>
public DateTime CreatedAt { get; set; } = DateTime.Now;
/// <summary>
/// 更新时间
/// </summary>
public DateTime UpdatedAt { get; set; } = DateTime.Now;
} }

View File

@ -1,3 +1,4 @@
using System.Net.Http.Json;
using System.Text.Json; using System.Text.Json;
using AssetManager.Models.DTOs; using AssetManager.Models.DTOs;
using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging;