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