代码拉取完成,页面将自动刷新
// 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
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。