From 34f22255680f81aa6c33529794688ea687797d3a Mon Sep 17 00:00:00 2001 From: lzh <1625167628@qq.com> Date: Wed, 15 Oct 2025 15:53:59 +0800 Subject: [PATCH] 1 --- internal/model/cast.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/internal/model/cast.go b/internal/model/cast.go index f97df07..880bef3 100644 --- a/internal/model/cast.go +++ b/internal/model/cast.go @@ -123,3 +123,8 @@ type CastWorkLog struct { func (m *CastWorkLog) TableName() string { return "cast_work_log" } + +type CostLogPo struct { + CostLog + CostType int `gorm:"column:cost_type;type:int(11)" json:"costType"` +}