12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- // Code generated by goctl. DO NOT EDIT.
- package types
- type DetailedReq struct {
- UserId string `form:"userId"`
- AppId string `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"`
- PointType int64 `form:"pointType"`
- SourceId string `form:"sourceId"`
- SourceType string `form:"sourceType"`
- Point int64 `form:"point"`
- CreateTime string `form:"createTime"`
- EndDate string `form:"endDate"`
- 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 string `form:"appId"`
- }
- type ExpireReq struct {
- UserId string `form:"userId"`
- AppId string `form:"appId"`
- EndDate string `form:"endDate"`
- }
- type AddReq struct {
- UserId string `form:"userId"`
- AppId string `form:"appId"`
- PointType int64 `form:"pointType"`
- SourceId string `form:"sourceId"`
- SourceType string `form:"sourceType"`
- 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 string `form:"appId"`
- PointType int64 `form:"pointType"`
- SourceId string `form:"sourceId"`
- SourceType string `form:"sourceType"`
- 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"`
- }
|