初步实现门店的逻辑代码
This commit is contained in:
@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user