调整表结构

This commit is contained in:
2025-06-05 14:58:58 +08:00
parent fdf5152bd2
commit 77067adf33
83 changed files with 137 additions and 2662 deletions

View File

@ -17,8 +17,12 @@ type Store struct {
}
type StoreCreateIn struct {
MerchantAdminId int64
Name string
OperatorId int64
OperatorRole string
Name string // 门店名称
Address string // 门店地址
ContactName string // 联系人姓名
ContactPhone string // 联系人电话
}
type StoreUpdateIn struct {
@ -50,7 +54,7 @@ type StoreInfoOut struct {
}
type StoreDeleteIn struct {
Id int
Id int64
OperatorId int
OperatorRole string
}