// ================================================================================= // This is auto-generated by GoFrame CLI tool only once. Fill this file as you wish. // ================================================================================= package dao import ( "practice_Go/internal/dao/internal" ) // internalEbooksDao is internal type for wrapping internal DAO implements. type internalEbooksDao = *internal.EbooksDao // ebooksDao is the data access object for table ebooks. // You can define custom methods on it to extend its functionality as you wish. type ebooksDao struct { internalEbooksDao } var ( // Ebooks is globally public accessible object for table ebooks operations. Ebooks = ebooksDao{ internal.NewEbooksDao(), } ) // Fill with you ideas below.