初步实现门店的逻辑代码

This commit is contained in:
2025-06-05 11:43:25 +08:00
parent 8b63f72f99
commit 9d20953377
14 changed files with 167 additions and 64 deletions

View File

@ -17,12 +17,19 @@ type Store struct {
}
type StoreCreateIn struct {
Name string
MerchantAdminId int64
Name string
}
type StoreUpdateIn struct {
Id int
Name string
OperatorId int64
OperatorRole string
Id int
Name string
Address string
ContactPhone string
ContactName string
Status int
}
type StoreListIn struct {
@ -43,5 +50,7 @@ type StoreInfoOut struct {
}
type StoreDeleteIn struct {
Id int
Id int
OperatorId int
OperatorRole string
}