12345678910111213141516171819 |
- package http_model
- type SendCodeTRequest struct {
- Phone string `json:"phone"`
- }
- type SendCodeTData struct {
- Code string `json:"code"`
- }
- func NewSendCodeTRequest() *SendCodeTRequest {
- return new(SendCodeTRequest)
- }
- func NewSendCodeTResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(SendCodeTData)
- return resp
- }
|