settle_account_main.go 802 B

123456789101112131415161718192021222324252627
  1. // ==========================================================================
  2. // This is auto-generated by gf cli tool. Fill this file as you wish.
  3. // ==========================================================================
  4. package model
  5. import (
  6. internal2 "lims_adapter/model/account/internal"
  7. )
  8. // SettleAccountMain is the golang structure for table settle_account_main.
  9. type SettleAccountMain internal2.SettleAccountMain
  10. // Fill with you ideas below.
  11. type SettleAccountMainReq struct {
  12. MainUserId int `json:"mainUserId"`
  13. AttachUserId int `json:"attachUserId"`
  14. InstrumentId int `json:"instrumentId"`
  15. Status string `json:"status"`
  16. SettleStatus string `json:"settleStatus"`
  17. FeeType string `json:"feeType"`
  18. }
  19. type AccountMainConfirmReq struct {
  20. MainId int `json:"mainId"`
  21. }