Vestmore_GO/model/killara_catalog_holiday_logic.go

12 lines
160 B
Go
Raw Normal View History

2024-04-07 16:03:37 +00:00
package model
2024-04-08 10:13:01 +00:00
import (
"github.com/jmoiron/sqlx"
)
2024-04-07 16:03:37 +00:00
type KillaraCatalogHolidayModel struct {
// fields ...
2024-04-08 10:13:01 +00:00
db *sqlx.DB
TableName string // 表名
2024-04-07 16:03:37 +00:00
}