123456789101112131415161718 |
- package models
- type InsertCollectionRequest struct {
- BiZhiId int `json:"biZhiId"`
- OpenId string `json:"openId"`
- }
- type DelCollectionRequest struct {
- BiZhiId int `json:"biZhiId"`
- OpenId string `json:"openId"`
- }
- type ListCollectionRequest struct {
- OpenId string `json:"openId"`
- PageSize int `json:"pageSize"`
- PageIndex int `json:"pageIndex"`
- Type string `json:"type"`
- }
|