Files
arenax-server/internal/dao/store_clients.go
2025-07-04 16:47:45 +08:00

23 lines
734 B
Go

// =================================================================================
// 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.