This commit is contained in:
laodaming
2023-06-21 15:06:09 +08:00
parent 8857f84bf6
commit 89dfd58e1c
7 changed files with 127 additions and 10 deletions

View File

@@ -11,6 +11,9 @@ service product-templatev2 {
//获取产品模板详情
@handler GetTemplatevDetailHandler
get /product-template/detail(GetTemplatevDetailReq) returns (response);
//获取底图列表
@handler GetBaseMapListHandler
get /product-template/base-map-list( ) returns (response);
}
//获取产品模板详情
@@ -34,4 +37,11 @@ type Tag {
type Light {
Id int64 `json:"id"`
Info interface{} `json:"info"`
}
//获取底图列表
type GetBaseMapListRsp {
Id int64 `json:"id"`
Name string `json:"name"`
Url string `json:"url"`
Ctime string `json:"ctime"`
}