tianyuan-api-server/apps/api/internal/westmodel/response.go
2024-10-12 20:41:55 +08:00

27 lines
548 B
Go

package westmodel
type G09GX01Response struct {
Msg string `json:"msg"`
Code int `json:"code"`
Data string `json:"data"`
Success bool `json:"success"`
}
type G26BJ05Response struct {
Data struct {
Code string `json:"code"`
} `json:"data"`
}
type G03HZ01Response struct {
Code string `json:"code"`
}
type G32BJ05Response struct {
Data struct {
Code string `json:"code"`
} `json:"data"`
}
type G16BJ02Response struct {
Code int `json:"code"`
Msg string `json:"msg"`
PhoneType string `json:"phoneType"`
}