1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- // 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"`
- }
- 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"`
- }
|