transfer_rs/cmd/api/doc/api.api

34 lines
540 B
Plaintext
Raw Permalink Normal View History

2024-06-18 18:14:57 +08:00
syntax = "v1"
info (
title: "荣数"
desc: "荣数"
author: "RZY"
email: "465386466@qq.com"
version: "v1"
)
import (
"vo/base.api"
)
@server (
prefix: /cross/v1
group: transfer
//middleware: DecryptMiddleware
)
service transfer {
@doc "荣数立减金发放"
@handler market
post /coupon/grant (Req) returns (Resp)
2024-07-09 18:19:52 +08:00
@doc "荣数回调"
@handler notifyGrant
post /notify/grant (NotifyGrantReq) returns (string)
@doc "荣数回调"
@handler notifyCoupon
post /notify/coupon (NotifyCouponReq) returns (string)
2024-06-18 18:14:57 +08:00
}