首先门店对网费进行 激励设置

This commit is contained in:
2025-07-04 18:24:57 +08:00
parent 2dfe6540ae
commit db9f182226
37 changed files with 486 additions and 395 deletions

View 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
}