collection.go 402 B

123456789101112131415161718
  1. package models
  2. type InsertCollectionRequest struct {
  3. BiZhiId int `json:"biZhiId"`
  4. OpenId string `json:"openId"`
  5. }
  6. type DelCollectionRequest struct {
  7. BiZhiId int `json:"biZhiId"`
  8. OpenId string `json:"openId"`
  9. }
  10. type ListCollectionRequest struct {
  11. OpenId string `json:"openId"`
  12. PageSize int `json:"pageSize"`
  13. PageIndex int `json:"pageIndex"`
  14. Type string `json:"type"`
  15. }