- package v1
- import (
- "demo/internal/model/entity"
- "github.com/gogf/gf/v2/frame/g"
- )
- type GetListReq struct {
- g.Meta `path:"/product_info" method:"get" tags:"product_info.go" summary:"Get product_info"`
- }
- type GetListRes struct {
- List []*entity.LotteryPrizeInfo `json:"list" dc:"product_info list"`
- Total int `json:"total" dc:"product_info list total"`
- }
|