service/api/proto/realname_authentication/proto/realname_authentication_api.go

36 lines
588 B
Go

package proto
import (
"service/api/base"
"service/dbstruct"
)
// api 创建
type ApiCreateReq struct {
base.BaseRequest
*dbstruct.RealNameAuthentication `jcrypto:"true"`
}
type ApiCreateData struct {
}
type ApiCreateResp struct {
base.BaseResponse
Data *ApiCreateData `json:"data"`
}
// api 列表
type ApiListReq struct {
base.BaseRequest
Mid *int64 `json:"mid"`
}
type ApiListData struct {
RealNameAuthenticationApiVO *RealNameAuthenticationApiVO `json:"realname_authentication_api_vo"`
}
type ApiListResp struct {
base.BaseResponse
Data *ApiListData `json:"data"`
}