Files
nl-video-api/internal/dao/internal.go
2025-08-03 00:11:15 +08:00

76 lines
2.5 KiB
Go

// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package dao
import (
"nl-video-api/internal/dao/internal"
)
// internalDao is internal type for wrapping internal DAO implements.
type internalDao = *internal.Dao
// Internal returns the internal DAO implements.
func Internal() internalDao {
return internal.New()
}
// New returns the DAO implements.
func New() *internal.Dao {
return internal.New()
}
var (
// User is globally public accessible object for table nl_user operations.
User = NewUserDao()
// Movie is globally public accessible object for table nl_movie operations.
Movie = NewMovieDao()
// Episode is globally public accessible object for table nl_episode operations.
Episode = NewEpisodeDao()
// Role is globally public accessible object for table nl_role operations.
Role = &RoleDao{}
// Permission is globally public accessible object for table nl_permission operations.
Permission = &PermissionDao{}
// UserCollect is globally public accessible object for table nl_user_collect operations.
UserCollect = NewUserCollectDao()
// UserWatchHistory is globally public accessible object for table nl_user_watch_history operations.
UserWatchHistory = NewUserWatchHistoryDao()
// Comment is globally public accessible object for table nl_comment operations.
Comment = NewCommentDao()
// Banner is globally public accessible object for table nl_banner operations.
Banner = NewBannerDao()
// PaymentOrder is globally public accessible object for table nl_payment_order operations.
PaymentOrder = NewPaymentOrderDao()
// VipLevel is globally public accessible object for table nl_vip_level operations.
VipLevel = NewVipLevelDao()
// Attachment is globally public accessible object for table nl_attachment operations.
Attachment = NewAttachmentDao()
// Config is globally public accessible object for table nl_config operations.
Config = NewConfigDao()
// AdminLog is globally public accessible object for table nl_admin_log operations.
AdminLog = NewAdminLogDao()
// UserLog is globally public accessible object for table nl_user_log operations.
UserLog = NewUserLogDao()
// CommentLike is globally public accessible object for table comment_like operations.
CommentLike = internal.NewCommentLikeDao()
// CommentReport is globally public accessible object for table comment_report operations.
CommentReport = internal.NewCommentReportDao()
)