123456789101112131415161718 |
- package http_model
- type RefreshAuthorizationRequest struct {
- PhoneNumber string `json:"phone_number"` //绑定手机号
- }
- type RefreshAuthkuaishouResponse struct {
- Url string `json:"url"`
- }
- func NewRefreshAuthorizationRequest() *RefreshAuthorizationRequest {
- return new(RefreshAuthorizationRequest)
- }
- func NewRefreshAuthorizationResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(RefreshAuthkuaishouResponse)
- return resp
- }
|