Files
arenax-server/internal/dao/merchants.go
2025-05-29 16:23:14 +08:00

28 lines
851 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"
)
// 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.