feat:完善项目

This commit is contained in:
henry
2021-11-12 11:14:58 +08:00
parent 27e61ed093
commit 413e0ea39c
6 changed files with 50 additions and 5 deletions

View File

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