Files
ArmedPolice/app/model/work_repair.go
2021-11-08 17:42:23 +08:00

12 lines
181 B
Go

package model
import "ArmedPolice/app/common/model"
type WorkRepair struct {
*model.WorkRepair
}
func NewWorkRepair() *WorkRepair {
return &WorkRepair{model.NewWorkRepair()}
}