1 Star 0 Fork 0

gabbble/app

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
appquestionfeedbackmodel.go 725 Bytes
Copy Edit Raw Blame History
haozhiyuan0204 authored 2023-11-25 13:37 +08:00 . modify
package mysql
import "github.com/zeromicro/go-zero/core/stores/sqlx"
var _ AppQuestionFeedbackModel = (*customAppQuestionFeedbackModel)(nil)
type (
// AppQuestionFeedbackModel is an interface to be customized, add more methods here,
// and implement the added methods in customAppQuestionFeedbackModel.
AppQuestionFeedbackModel interface {
appQuestionFeedbackModel
}
customAppQuestionFeedbackModel struct {
*defaultAppQuestionFeedbackModel
}
)
// NewAppQuestionFeedbackModel returns a model for the database table.
func NewAppQuestionFeedbackModel(conn sqlx.SqlConn) AppQuestionFeedbackModel {
return &customAppQuestionFeedbackModel{
defaultAppQuestionFeedbackModel: newAppQuestionFeedbackModel(conn),
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/gabbble/app.git
git@gitee.com:gabbble/app.git
gabbble
app
app
9a5bcbd7ccf5

Search