instrument_surcharge.go 677 B

123456789101112131415161718192021222324
  1. // ==========================================================================
  2. // This is auto-generated by gf cli tool. Fill this file as you wish.
  3. // ==========================================================================
  4. package equipment
  5. import (
  6. internal2 "lims_adapter/model/equipment/internal"
  7. )
  8. // InstrumentSurcharge is the golang structure for table instrument_surcharge.
  9. type InstrumentSurcharge internal2.InstrumentSurcharge
  10. type InstrumentSurchargeReq struct {
  11. InstrumentId int `json:"instrumentId"`
  12. }
  13. type InstrumentSurchargeSaveReq struct {
  14. Entity InstrumentSurcharge `json:"entity"`
  15. }
  16. type InstrumentSurchargeDeleteReq struct {
  17. Id int `json:"id"`
  18. }