12 lines
205 B
Go
12 lines
205 B
Go
|
|
package model
|
||
|
|
|
||
|
|
import "ArmedPolice/app/common/model"
|
||
|
|
|
||
|
|
type ManageSupplier struct {
|
||
|
|
*model.ManageSupplier
|
||
|
|
}
|
||
|
|
|
||
|
|
func NewManageSupplier() *ManageSupplier {
|
||
|
|
return &ManageSupplier{model.NewManageSupplier()}
|
||
|
|
}
|