gettalentwithdrawlsitrequest.go 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package http_model
  2. type GetTalentWithdrawListRequest struct {
  3. PageSize int `json:"page_size"`
  4. PageNum int `json:"page_num"`
  5. Status int `json:"status"`
  6. Others string `json:"others,omitempty"`
  7. During string `json:"during,omitempty"`
  8. }
  9. type TalentWithdrawListResponse struct {
  10. WithdrawId string `json:"withdraw_id"`
  11. TalentId string `json:"talent_id"`
  12. //TalentName string `json:"talent_name"`
  13. WithdrawAmount float64 `json:"withdraw_amount"`
  14. ActualAmount float64 `json:"amount_payable"`
  15. PhoneNumber string `json:"phone_number"`
  16. ReajectAt string `json:"reject_at"`
  17. SubmitAt string `json:"submit_at"`
  18. WithdrawAt string `json:"withdraw_at"`
  19. RejectReason string `json:"reject_reason"`
  20. Name string `json:"name"`
  21. IdcardNumber string `json:"idcard_number"`
  22. BankNumber string `json:"bank_number"`
  23. }
  24. type TalentWithdrawListData struct {
  25. Total int64 `json:"total"`
  26. TalentwithdrawList []*TalentWithdrawListResponse `json:"talentwithdraw_listinfo"`
  27. }
  28. func NewGetTalentWithdrawListRequest() *GetTalentWithdrawListRequest {
  29. return new(GetTalentWithdrawListRequest)
  30. }
  31. func NewGetTalentWithdrawListResponse() *CommonResponse {
  32. resp := new(CommonResponse)
  33. resp.Data = new(TalentWithdrawListData)
  34. return resp
  35. }