gettalentwithdrawlsitrequest.go 1.2 KB

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