// Code generated by goctl. DO NOT EDIT. package types type DetailedReq struct { UserId string `form:"userId"` AppId int64 `form:"appId"` SearchType int64 `form:"searchType"` Page int64 `form:"page"` PageSize int64 `form:"pageSize"` } type RespList struct { Code int64 `form:"code"` Message string `form:"message"` Count int64 `form:"count"` Data []*Point `form:"data"` } type Point struct { Id int64 `form:"id"` UserId string `form:"userId"` PointType int64 `form:"pointType"` BusinessTypeId int64 `form:"businessTypeId"` BusinessType string `form:"businessType"` Point int64 `form:"point"` CreateTime string `form:"createTime"` EndDate string `form:"endDate"` AppId int64 `form:"appId"` Sort int64 `form:"sort"` Name string `form:"name"` } type Response struct { Code int64 `form:"code"` Message string `form:"message"` Data int64 `form:"data"` Expire int64 `form:"expire"` } type CheckReq struct { UserId string `form:"userId"` AppId int64 `form:"appId"` } type ExpireReq struct { UserId string `form:"userId"` AppId int64 `form:"appId"` EndDate string `form:"endDate"` } type AddReq struct { UserId string `form:"userId"` AppId int64 `form:"appId"` PointType int64 `form:"pointType"` BusinessTypeId int64 `form:"businessTypeId"` BusinessType string `form:"businessType"` Point int64 `form:"point"` EndDate string `form:"endDate"` OperationType bool `form:"operationType"` } type AddResp struct { Code int64 `form:"code"` Message string `form:"message"` } type ConsumeReq struct { UserId string `form:"userId"` AppId int64 `form:"appId"` PointType int64 `form:"pointType"` BusinessTypeId int64 `form:"businessTypeId"` BusinessType string `form:"businessType"` Point int64 `form:"point"` EndDate string `form:"endDate"` } type ConsumeResp struct { Code int64 `form:"code"` Message string `form:"message"` } type GuardReq struct { EndDate string `form:"endDate"` }