首先门店对网费进行 激励设置
This commit is contained in:
17
internal/model/storeArea.go
Normal file
17
internal/model/storeArea.go
Normal file
@ -0,0 +1,17 @@
|
||||
package model
|
||||
|
||||
type StoreArea struct {
|
||||
Id int64 `json:"id" orm:"id" description:"区域ID"` // 区域ID
|
||||
StoreId int64 `json:"storeId" orm:"store_id" description:"所属门店ID"` // 所属门店ID
|
||||
AreaName string `json:"areaName" orm:"area_name" description:"区域名称"` // 区域名称
|
||||
}
|
||||
|
||||
type StoreAreaListIn struct {
|
||||
OperatorId int64
|
||||
OperatorRole string
|
||||
StoreId int64 `json:"storeId"`
|
||||
}
|
||||
type StoreAreaListOut struct {
|
||||
List []StoreArea
|
||||
Total int
|
||||
}
|
||||
Reference in New Issue
Block a user