Files
ArmedPolice/app/model/work_repair.go

12 lines
181 B
Go
Raw Normal View History

2021-11-08 17:42:23 +08:00
package model
import "ArmedPolice/app/common/model"
type WorkRepair struct {
*model.WorkRepair
}
func NewWorkRepair() *WorkRepair {
return &WorkRepair{model.NewWorkRepair()}
}