8 lines
167 B
Go
8 lines
167 B
Go
|
|
package pet
|
||
|
|
|
||
|
|
// GetPetInfoInboundInfo 获取宠物信息入站请求
|
||
|
|
type GetPetInfoInboundInfo struct {
|
||
|
|
// 精灵生成时间
|
||
|
|
CatchTime uint64 `json:"catchTime"`
|
||
|
|
}
|