印度包网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
850 B

1 year ago
package backend
import (
"server/modules/backend/app"
"server/modules/backend/values"
)
// swagger:route POST /examine/withdraw/list examine idOfExamineWithdrawList
// 获取审核退出列表
// Responses:
// 200:ExamineWithdrawListResp
// swagger:response ExamineWithdrawListResp
type ExamineWithdrawListResp struct {
// in:body
Body values.WithdrawListResp
}
// swagger:parameters idOfExamineWithdrawList
type ExamineWithdrawListReq struct {
// in:body
Body values.WithdrawListReq
}
// swagger:route POST /examine/withdraw/do examine idOfExamineWithdraw
// 审核退出
// Responses:
// 200:ExamineWithdrawResp
// swagger:response ExamineWithdrawResp
type ExamineWithdrawResp struct {
// in:body
Body app.R
}
// swagger:parameters idOfExamineWithdraw
type ExamineWithdrawReq struct {
// in:body
Body values.WithdrawExamineReq
}