You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
281 B

1 year ago
package model
import "gorm.io/gorm"
type (
JobList1Model interface {
jobList1Model
}
customJobList1Model struct {
*defaultJobList1Model
}
)
func NewJobList1Model(db *gorm.DB) JobList1Model {
return &customJobList1Model{
defaultJobList1Model: newJobList1DAO(db),
}
}