settle_account_main.go 927 B

1234567891011121314151617181920212223242526272829303132
  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. }
  22. type AccountMainAddReq struct {
  23. Main SettleAccountMain `json:"main"`
  24. Details []SettleAccountDetail `json:"details"`
  25. }