18 lines
503 B
Go
18 lines
503 B
Go
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
|
|
}
|