// ================================================================================= // This file is auto-generated by the GoFrame CLI tool. You may modify it as needed. // ================================================================================= package dao import ( "server/internal/dao/internal" ) // internalMerchantsDao is an internal type for wrapping the internal DAO implementation. type internalMerchantsDao = *internal.MerchantsDao // merchantsDao is the data access object for the table merchants. // You can define custom methods on it to extend its functionality as needed. type merchantsDao struct { internalMerchantsDao } var ( // Merchants is a globally accessible object for table merchants operations. Merchants = merchantsDao{ internal.NewMerchantsDao(), } ) // Add your custom methods and functionality below.