This commit is contained in:
chy
2025-06-26 14:30:57 +08:00
parent db5d707e54
commit 310308c7d9
25 changed files with 3194 additions and 74 deletions

View File

@ -0,0 +1,6 @@
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"`
}