6 lines
205 B
Go
6 lines
205 B
Go
type StoreData struct {
|
|
g.Meta `orm:"table:stores"`
|
|
Id int `json:"id" orm:"id"`
|
|
MerchantId int `json:"merchantId" orm:"merchant_id"`
|
|
StoreName string `json:"storeName" orm:"name"`
|
|
} |