21 lines
686 B
Go
21 lines
686 B
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package dao
|
|
|
|
import (
|
|
"nl-video-api/internal/dao/internal"
|
|
)
|
|
|
|
// internalCommentReportDao is internal type for wrapping internal DAO implements.
|
|
type internalCommentReportDao = *internal.CommentReportDao
|
|
|
|
// commentReportDao is the data access object for table comment_report.
|
|
// You can define custom methods on it to extend its functionality as you wish.
|
|
type commentReportDao struct {
|
|
internalCommentReportDao
|
|
}
|
|
|
|
// Fill with you ideas below.
|