fix
This commit is contained in:
@@ -19,6 +19,9 @@ service data-transfer {
|
||||
//获取二维码设置列表
|
||||
@handler GetQrCodeSetListHandler
|
||||
get /qrcode-set/list returns (response);
|
||||
//生成二维码
|
||||
@handler UploadQrcodeHandler
|
||||
post /upload/qrcode (UploadQrcodeReq) returns (response);
|
||||
}
|
||||
|
||||
//获取标准logo列表
|
||||
@@ -31,4 +34,13 @@ type GetStandardLogoListRsp {
|
||||
type GetQrCodeSetListRsp {
|
||||
Id int64 `json:"id"`
|
||||
Name string `json:"name"`
|
||||
}
|
||||
//生成二维码
|
||||
type UploadQrcodeReq {
|
||||
Url string `form:"url"`
|
||||
QRcodeType int64 `form:"QRcodeType"`
|
||||
}
|
||||
type UploadQrcodeRsp {
|
||||
Link string `json:"link"`
|
||||
D string `json:"d"`
|
||||
}
|
||||
Reference in New Issue
Block a user