35 lines
744 B
Plaintext
35 lines
744 B
Plaintext
|
syntax = "v1"
|
|||
|
|
|||
|
info (
|
|||
|
title: "代理服务"
|
|||
|
desc: "代理服务接口"
|
|||
|
author: "Liangzai"
|
|||
|
email: "2440983361@qq.com"
|
|||
|
version: "v1"
|
|||
|
)
|
|||
|
|
|||
|
type (
|
|||
|
// 代理申请请求参数
|
|||
|
AgentApplyReq {
|
|||
|
UserID int64 `json:"user_id"`
|
|||
|
Region string `json:"region"`
|
|||
|
Mobile string `json:"mobile"`
|
|||
|
WechatID string `json:"wechat_id"`
|
|||
|
}
|
|||
|
// 代理申请响应
|
|||
|
AgentApplyResp {
|
|||
|
Status string `json:"status"`
|
|||
|
Message string `json:"message"`
|
|||
|
}
|
|||
|
// 查询代理申请状态请求参数
|
|||
|
AgentAuditStatusReq {
|
|||
|
UserID int64 `json:"user_id"`
|
|||
|
}
|
|||
|
// 查询代理申请状态响应
|
|||
|
AgentAuditStatusResp {
|
|||
|
Status int `json:"status"` // 0=待审核,1=审核通过,2=审核未通过
|
|||
|
AuditReason string `json:"audit_reason"`
|
|||
|
}
|
|||
|
)
|
|||
|
|