// ============================================================================ // This is auto-generated by gf cli tool only once. Fill this file as you wish. // ============================================================================ package equipment import ( "lims_adapter/dao/equipment/internal" ) // instrumentSurchargeDao is the manager for logic model data accessing // and custom defined data operations functions management. You can define // methods on it to extend its functionality as you wish. type instrumentSurchargeDao struct { internal.InstrumentSurchargeDao } var ( // Instrument is globally public accessible object for table instrument_surcharge operations. InstrumentSurcharge = instrumentSurchargeDao{ internal.InstrumentSurcharge, } ) type InstrumentSurchargeDao struct { internal.InstrumentSurchargeDao } func NewInstrumentSurchargeDao(tenant string) *InstrumentSurchargeDao { dao := internal.NewInstrumentSurchargeDao(tenant) return &InstrumentSurchargeDao{ dao, } } // Fill with you ideas below.