From 50bd0d07029c1a93de5469de213801c8c55857a1 Mon Sep 17 00:00:00 2001 From: "jiaji.H" Date: Thu, 25 Sep 2025 14:27:53 +0800 Subject: [PATCH] =?UTF-8?q?Updata:=E4=BF=AE=E6=94=B9=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internel/model/reports.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internel/model/reports.go b/internel/model/reports.go index f6a6aae..eacb3c2 100644 --- a/internel/model/reports.go +++ b/internel/model/reports.go @@ -12,7 +12,7 @@ type AnnualReport struct { UpdatedAt time.Time DeletedAt gorm.DeletedAt `gorm:"column:deleted_at;index:idx_annual_report_deleted_at;"` FileName string `gorm:"column:file_name;type:varchar(100);not null;default:'';comment:文件名称"` - Date int64 `gorm:"column:date;type:int;not null;default:0;comment:日期"` + Date int64 `gorm:"column:date;type:bigint;not null;default:0;comment:日期"` FileUrl string `gorm:"column:file_url;type:varchar(1024);not null;default:'';comment:访问地址"` Status int32 `gorm:"column:status;type:int;not null;default:2;comment:状态:1上架 2 下架"` Sort int32 `gorm:"column:sort;type:int;not null;default:1;comment:排序"`