gettalentwithdrawinfo.go 569 B

12345678910111213141516171819202122
  1. package http_model
  2. type GetTalentWithdrawInfoRequest struct {
  3. WithdrawId string `json:"withdraw_id"`
  4. }
  5. type TalentWithdrawResponse struct {
  6. Name string `json:"name"`
  7. IdcardNumber string `json:"idcard_number"`
  8. BankNumber string `json:"bank_number"`
  9. PhoneNumber string `json:"phone_number"`
  10. }
  11. func NewGetTalentWithdrawInfoRequest() *GetTalentWithdrawInfoRequest {
  12. return new(GetTalentWithdrawInfoRequest)
  13. }
  14. func NewGetTalentWithdrawInfoResponse() *CommonResponse {
  15. resp := new(CommonResponse)
  16. resp.Data = new(TalentWithdrawResponse)
  17. return resp
  18. }