| 12345678910111213141516171819202122232425262728 |
- package petsLy
- import (
- "duoduo/models/mysqlLy"
- )
- type PetsListRequest struct {
- OpenId string `json:"open_id"`
- IsFee int `json:"is_fee"`
- City string `json:"city"`
- Pet string `json:"pet"`
- Status int `json:"status"`
- PageSize int `json:"pageSize"`
- PageIndex int `json:"pageIndex"`
- }
- type PetsListResponse struct {
- Pets []Pets `json:"pets"`
- }
- type Pets struct {
- Pets mysqlLy.Pets `json:"pets"`
- Pictures []string `json:"pictures"`
- TimeDiff string `json:"time_diff"`
- }
- type Pictures struct {
- }
|