23 lines
705 B
Go
23 lines
705 B
Go
// =================================================================================
|
|
// This file is auto-generated by the GoFrame CLI tool. You may modify it as needed.
|
|
// =================================================================================
|
|
|
|
package dao
|
|
|
|
import (
|
|
"epic/internal/dao/internal"
|
|
)
|
|
|
|
// infraFileDao is the data access object for the table infra_file.
|
|
// You can define custom methods on it to extend its functionality as needed.
|
|
type infraFileDao struct {
|
|
*internal.InfraFileDao
|
|
}
|
|
|
|
var (
|
|
// InfraFile is a globally accessible object for table infra_file operations.
|
|
InfraFile = infraFileDao{internal.NewInfraFileDao()}
|
|
)
|
|
|
|
// Add your custom methods and functionality below.
|