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.
 
 

18 lines
281 B

package model
import "gorm.io/gorm"
type (
JobList2Model interface {
jobList2Model
}
customJobList2Model struct {
*defaultJobList2Model
}
)
func NewJobList2Model(db *gorm.DB) JobList2Model {
return &customJobList2Model{
defaultJobList2Model: newJobList2DAO(db),
}
}