23 lines
326 B
Go
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"` // 标识
|
||
|
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
门店
|
||
|
游戏
|
||
|
卡
|
||
|
库存
|
||
|
|
||
|
|
||
|
*/
|