feat:完善项目

This commit is contained in:
henry
2021-11-18 18:28:34 +08:00
parent bcceef741b
commit ba423a2d19
20 changed files with 217 additions and 68 deletions

View File

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