28 lines
847 B
Go
28 lines
847 B
Go
// =================================================================================
|
|
// This file is auto-generated by the GoFrame CLI tool. You may modify it as needed.
|
|
// =================================================================================
|
|
|
|
package dao
|
|
|
|
import (
|
|
"kami/internal/dao/internal"
|
|
)
|
|
|
|
// internalV1SysUserDao is an internal type for wrapping the internal DAO implementation.
|
|
type internalV1SysUserDao = *internal.V1SysUserDao
|
|
|
|
// v1SysUserDao is the data access object for the table sys_user.
|
|
// You can define custom methods on it to extend its functionality as needed.
|
|
type v1SysUserDao struct {
|
|
internalV1SysUserDao
|
|
}
|
|
|
|
var (
|
|
// V1SysUser is a globally accessible object for table sys_user operations.
|
|
V1SysUser = v1SysUserDao{
|
|
internal.NewV1SysUserDao(),
|
|
}
|
|
)
|
|
|
|
// Add your custom methods and functionality below.
|