package petsLy import "duoduo/models/mysqlLy" type PetsDetailsRequest struct { PetsId int64 `json:"pets_id"` } type PetsDetailsResponse struct { PetsInfo mysqlLy.Pets `json:"pets_info"` Phone string `json:"phone"` WxCode string `json:"wx_code"` Pictures []string `json:"pictures"` DepositDate string `json:"deposit_date"` }