1 Star 0 Fork 0

gabbble/app

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
appquestionfeedbackmodel_gen.go 3.26 KB
一键复制 编辑 原始数据 按行查看 历史
haozhiyuan0204 提交于 2023-11-25 13:37 +08:00 . modify
// Code generated by goctl. DO NOT EDIT.
package mysql
import (
"context"
"database/sql"
"fmt"
"strings"
"github.com/zeromicro/go-zero/core/stores/builder"
"github.com/zeromicro/go-zero/core/stores/sqlc"
"github.com/zeromicro/go-zero/core/stores/sqlx"
"github.com/zeromicro/go-zero/core/stringx"
)
var (
appQuestionFeedbackFieldNames = builder.RawFieldNames(&AppQuestionFeedback{})
appQuestionFeedbackRows = strings.Join(appQuestionFeedbackFieldNames, ",")
appQuestionFeedbackRowsExpectAutoSet = strings.Join(stringx.Remove(appQuestionFeedbackFieldNames, "`id`", "`create_at`", "`create_time`", "`created_at`", "`update_at`", "`update_time`", "`updated_at`"), ",")
appQuestionFeedbackRowsWithPlaceHolder = strings.Join(stringx.Remove(appQuestionFeedbackFieldNames, "`id`", "`create_at`", "`create_time`", "`created_at`", "`update_at`", "`update_time`", "`updated_at`"), "=?,") + "=?"
)
type (
appQuestionFeedbackModel interface {
Insert(ctx context.Context, data *AppQuestionFeedback) (sql.Result, error)
FindOne(ctx context.Context, id int64) (*AppQuestionFeedback, error)
Update(ctx context.Context, data *AppQuestionFeedback) error
Delete(ctx context.Context, id int64) error
}
defaultAppQuestionFeedbackModel struct {
conn sqlx.SqlConn
table string
}
AppQuestionFeedback struct {
Id int64 `db:"id"` // id
Uid int64 `db:"uid"` // user id
Uuid string `db:"uuid"` // uuid
Platform string `db:"platform"` // 系统
Email string `db:"email"` // 邮箱
Content sql.NullString `db:"content"` // 反馈内容
Ctime int64 `db:"ctime"` // 修改时间
}
)
func newAppQuestionFeedbackModel(conn sqlx.SqlConn) *defaultAppQuestionFeedbackModel {
return &defaultAppQuestionFeedbackModel{
conn: conn,
table: "`app_question_feedback`",
}
}
func (m *defaultAppQuestionFeedbackModel) Delete(ctx context.Context, id int64) error {
query := fmt.Sprintf("delete from %s where `id` = ?", m.table)
_, err := m.conn.ExecCtx(ctx, query, id)
return err
}
func (m *defaultAppQuestionFeedbackModel) FindOne(ctx context.Context, id int64) (*AppQuestionFeedback, error) {
query := fmt.Sprintf("select %s from %s where `id` = ? limit 1", appQuestionFeedbackRows, m.table)
var resp AppQuestionFeedback
err := m.conn.QueryRowCtx(ctx, &resp, query, id)
switch err {
case nil:
return &resp, nil
case sqlc.ErrNotFound:
return nil, ErrNotFound
default:
return nil, err
}
}
func (m *defaultAppQuestionFeedbackModel) Insert(ctx context.Context, data *AppQuestionFeedback) (sql.Result, error) {
query := fmt.Sprintf("insert into %s (%s) values (?, ?, ?, ?, ?, ?)", m.table, appQuestionFeedbackRowsExpectAutoSet)
ret, err := m.conn.ExecCtx(ctx, query, data.Uid, data.Uuid, data.Platform, data.Email, data.Content, data.Ctime)
return ret, err
}
func (m *defaultAppQuestionFeedbackModel) Update(ctx context.Context, data *AppQuestionFeedback) error {
query := fmt.Sprintf("update %s set %s where `id` = ?", m.table, appQuestionFeedbackRowsWithPlaceHolder)
_, err := m.conn.ExecCtx(ctx, query, data.Uid, data.Uuid, data.Platform, data.Email, data.Content, data.Ctime, data.Id)
return err
}
func (m *defaultAppQuestionFeedbackModel) tableName() string {
return m.table
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/gabbble/app.git
git@gitee.com:gabbble/app.git
gabbble
app
app
9a5bcbd7ccf5

搜索帮助