up_withdraw.go 850 B

123456789101112131415161718192021222324252627
  1. package income
  2. import (
  3. "go-common/library/time"
  4. )
  5. // UpIncomeWithdraw up income withdraw
  6. type UpIncomeWithdraw struct {
  7. ID int64 `json:"id"`
  8. MID int64 `json:"mid"`
  9. WithdrawIncome int64 `json:"-"`
  10. Income string `json:"withdraw_income"`
  11. DateVersion string `json:"date_version"`
  12. MTime time.Time `json:"withdraw_time"`
  13. Nickname string `json:"nickname"`
  14. }
  15. // UpWithdrawRes response
  16. type UpWithdrawRes struct {
  17. MID int64 `json:"mid"`
  18. Nickname string `json:"nickname"`
  19. WithdrawIncome string `json:"withdraw_income"`
  20. UnWithdrawIncome string `json:"unwithdraw_income"`
  21. LastWithdrawIncome string `json:"last_withdraw_income"`
  22. WithdrawDate string `json:"withdraw_date"`
  23. MTime time.Time `json:"mtime"`
  24. }