// ============================================================================ // This is auto-generated by gf cli tool only once. Fill this file as you wish. // ============================================================================ package consequent import ( internal2 "lims_adapter/dao/consequent/internal" ) // consequentDetailDao 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 consequentDetailDao struct { internal2.ConsequentDetailDao } var ( // ConsequentDetail is globally public accessible object for table consequent_detail operations. ConsequentDetail = consequentDetailDao{ internal2.ConsequentDetail, } ) type ConsequentDetailDao struct { internal2.ConsequentDetailDao } func NewConsequentDetailDao(tenant string) *ConsequentDetailDao { dao := internal2.NewConsequentDetailDao(tenant) return &ConsequentDetailDao{ dao, } } // Fill with you ideas below.