f
This commit is contained in:
@@ -16,6 +16,10 @@ service main {
|
||||
@handler AdminGetQueryDetailByOrderId
|
||||
get /detail/:order_id (AdminGetQueryDetailByOrderIdReq) returns (AdminGetQueryDetailByOrderIdResp)
|
||||
|
||||
@doc "生成报告分享链接(供后台预览 H5)"
|
||||
@handler AdminGenerateQueryShareLink
|
||||
post /generate_share_link (AdminGenerateQueryShareLinkReq) returns (QueryGenerateShareLinkResp)
|
||||
|
||||
@doc "获取清理日志列表"
|
||||
@handler AdminGetQueryCleanupLogList
|
||||
get /cleanup/logs (AdminGetQueryCleanupLogListReq) returns (AdminGetQueryCleanupLogListResp)
|
||||
@@ -37,6 +41,10 @@ service main {
|
||||
OrderId string `path:"order_id"`
|
||||
}
|
||||
|
||||
type AdminGenerateQueryShareLinkReq {
|
||||
OrderId string `json:"order_id"`
|
||||
}
|
||||
|
||||
type AdminGetQueryDetailByOrderIdResp {
|
||||
Id string `json:"id"` // 主键ID
|
||||
OrderId string `json:"order_id"` // 订单ID
|
||||
|
||||
Reference in New Issue
Block a user