feat:完善项目

This commit is contained in:
henry
2021-11-08 17:42:23 +08:00
parent 1cc95fb5ca
commit 08083d26d3
7 changed files with 315 additions and 125 deletions

11
app/model/work_repair.go Normal file
View File

@ -0,0 +1,11 @@
package model
import "ArmedPolice/app/common/model"
type WorkRepair struct {
*model.WorkRepair
}
func NewWorkRepair() *WorkRepair {
return &WorkRepair{model.NewWorkRepair()}
}