service/api/proto/account_cancellation/proto/account_cancellation_api.go

20 lines
252 B
Go

package proto
import (
"service/api/base"
)
// op 列表
type ApiListByMidReq struct {
base.BaseRequest
}
type ApiListByMidData struct {
*ApiListByMidVO
}
type ApiListByMidResp struct {
base.BaseResponse
Data *ApiListByMidData `json:"data"`
}