6
0

instrument.go 929 B

123456789101112131415161718192021222324252627282930313233343536
  1. // ============================================================================
  2. // This is auto-generated by gf cli tool only once. Fill this file as you wish.
  3. // ============================================================================
  4. package equipment
  5. import (
  6. "lims_adapter/dao/equipment/internal"
  7. )
  8. // instrumentDao is the manager for logic model data accessing
  9. // and custom defined data operations functions management. You can define
  10. // methods on it to extend its functionality as you wish.
  11. type instrumentDao struct {
  12. internal.InstrumentDao
  13. }
  14. var (
  15. // Instrument is globally public accessible object for table instrument operations.
  16. Instrument = instrumentDao{
  17. internal.Instrument,
  18. }
  19. )
  20. type InstrumentDao struct {
  21. internal.InstrumentDao
  22. }
  23. func NewInstrumentDao(tenant string) *InstrumentDao {
  24. dao := internal.NewInstrumentDao(tenant)
  25. return &InstrumentDao{
  26. dao,
  27. }
  28. }
  29. // Fill with you ideas below.