pets.details.go 332 B

123456789101112131415
  1. package petsLy
  2. import "duoduo/models/mysqlLy"
  3. type PetsDetailsRequest struct {
  4. PetsId int64 `json:"pets_id"`
  5. }
  6. type PetsDetailsResponse struct {
  7. PetsInfo mysqlLy.Pets `json:"pets_info"`
  8. Phone string `json:"phone"`
  9. WxCode string `json:"wx_code"`
  10. Pictures []string `json:"pictures"`
  11. DepositDate string `json:"deposit_date"`
  12. }