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