mh_server/model/cooperative_business.go

23 lines
326 B
Go
Raw Normal View History

2022-04-27 02:25:55 +00:00
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"` // 标识
}
/*
门店
游戏
库存
*/