// ================================================================================= // This file is auto-generated by the GoFrame CLI tool. You may modify it as needed. // ================================================================================= package dao import ( "server/internal/dao/internal" ) // storeClientsDao is the data access object for the table store_clients. // You can define custom methods on it to extend its functionality as needed. type storeClientsDao struct { *internal.StoreClientsDao } var ( // StoreClients is a globally accessible object for table store_clients operations. StoreClients = storeClientsDao{internal.NewStoreClientsDao()} ) // Add your custom methods and functionality below.