mh_server/model/cooperative_business.go
2022-04-27 10:25:55 +08:00

23 lines
326 B
Go

package model
import "time"
//go:generate goqueryset -in cooperative_business.go
// gen:qs
type CooperativeBusiness struct {
Model
Name string `json:"name"` //
AddTime time.Time `json:"add_time"` // 加入时间
//Identification string `json:"identification"` // 标识
}
/*
门店
游戏
库存
*/