account_income.go 770 B

12345678910111213141516171819202122232425
  1. package http_model
  2. type TalentInfoRequest struct {
  3. TalentId string `json:"talent_id"`
  4. }
  5. type TalentInfoResponse struct {
  6. Income int64 `json:"income"` // 收益总数
  7. Withdrawing int64 `json:"withdrawing"` // 提现中金额
  8. Canwithdraw int64 `json:"canwithdraw"` // 可提现金额
  9. Withdrawed int64 `json:"withdrawed"` // 已提现金额
  10. DetailAddr string `json:"detail_addr"` // 详细地址
  11. PhoneNumber string `json:"phone_number"` // 联系电话
  12. ReceiverName string `json:"receiver_name"` // 收货人名字
  13. }
  14. func NewTalentInfoRequest() *TalentInfoRequest {
  15. return new(TalentInfoRequest)
  16. }
  17. func NewTalentInfoResponse() *CommonResponse {
  18. resp := new(CommonResponse)
  19. resp.Data = new(TalentInfoResponse)
  20. return resp
  21. }