2023-12-25 02:15:59 +08:00
|
|
|
package request
|
|
|
|
|
|
|
|
import "github.com/gogf/gf/v2/frame/g"
|
|
|
|
|
|
|
|
type TokenCreateReq struct {
|
2023-12-26 15:34:38 +08:00
|
|
|
g.Meta `path:"/create" tags:"创建" method:"get" summary:"创建 TokenServiceImpl"`
|
2023-12-25 02:15:59 +08:00
|
|
|
}
|
|
|
|
type TokenCreateRes struct{}
|
2023-12-25 02:28:28 +08:00
|
|
|
|
|
|
|
type TokenVerifyReq struct {
|
2023-12-26 15:34:38 +08:00
|
|
|
g.Meta `path:"/verify" tags:"验证" method:"get" summary:"验证 TokenServiceImpl"`
|
2023-12-25 02:28:28 +08:00
|
|
|
}
|
|
|
|
type TokenVerifyRes struct{}
|