settle_account_main.go 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. MainUser string `json:"mainUser"`
  14. AttachUserId int `json:"attachUserId"`
  15. AttachUser string `json:"attachUser"`
  16. InstrumentId int `json:"instrumentId"`
  17. AppointUserId int `json:"appointUserId"`
  18. AppointUser string `json:"appointUser"`
  19. Status string `json:"status"`
  20. SettleStatus string `json:"settleStatus"`
  21. FeeType string `json:"feeType"`
  22. AppointStartDate string `json:"appointStartDate"`
  23. AppointEndDate string `json:"appointEndDate"`
  24. }
  25. type AccountMainConfirmReq struct {
  26. MainId int `json:"mainId"`
  27. }
  28. type AccountMainAddReq struct {
  29. Main SettleAccountMain `json:"main"`
  30. Details []SettleAccountDetail `json:"details"`
  31. }
  32. type AccountMainCancelReq struct {
  33. AppointId int `json:"appointId"`
  34. }