This commit is contained in:
lzh 2025-10-15 15:53:59 +08:00
parent 51db761716
commit 34f2225568

View File

@ -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"`
}