product_info.go 384 B

1234567891011121314
  1. package v1
  2. import (
  3. "demo/internal/model/entity"
  4. "github.com/gogf/gf/v2/frame/g"
  5. )
  6. type GetListReq struct {
  7. g.Meta `path:"/product_info" method:"get" tags:"product_info.go" summary:"Get product_info"`
  8. }
  9. type GetListRes struct {
  10. List []*entity.LotteryPrizeInfo `json:"list" dc:"product_info list"`
  11. Total int `json:"total" dc:"product_info list total"`
  12. }