tianyuan-api-server/apps/api/internal/westmodel/response.go

27 lines
548 B
Go
Raw Normal View History

2024-10-02 00:57:17 +08:00
package westmodel
type G09GX01Response struct {
Msg string `json:"msg"`
Code int `json:"code"`
Data string `json:"data"`
Success bool `json:"success"`
}
2024-10-12 20:41:55 +08:00
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"`
}
2024-10-02 00:57:17 +08:00
type G16BJ02Response struct {
Code int `json:"code"`
Msg string `json:"msg"`
PhoneType string `json:"phoneType"`
}