From aa14bbd5162620be498d3de2d5ac9bc984e1ebc0 Mon Sep 17 00:00:00 2001 From: gongpei Date: Tue, 26 May 2026 10:00:59 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BB=98=E6=81=AF=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E6=97=A5=E6=9C=9F=E7=B1=BB=E5=9E=8B=E6=94=AF=E6=8C=81DBNull?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Framework/YLErp.Core/DBModels/BondPayment.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Framework/YLErp.Core/DBModels/BondPayment.cs b/Framework/YLErp.Core/DBModels/BondPayment.cs index 94056c19..aae29465 100644 --- a/Framework/YLErp.Core/DBModels/BondPayment.cs +++ b/Framework/YLErp.Core/DBModels/BondPayment.cs @@ -98,12 +98,12 @@ namespace YLErp.DBModels /// 发布时间 /// [Column("insert_time")] - public DateTime create_time { get; set; } + public DateTime? create_time { get; set; } /// /// 更新时间 /// [DisplayName("更新时间")] [Column("update_time")] - public DateTime update_time { get; set; } + public DateTime? update_time { get; set; } } }