代码拉取完成,页面将自动刷新
// 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 (
appLogReportRecordFieldNames = builder.RawFieldNames(&AppLogReportRecord{})
appLogReportRecordRows = strings.Join(appLogReportRecordFieldNames, ",")
appLogReportRecordRowsExpectAutoSet = strings.Join(stringx.Remove(appLogReportRecordFieldNames, "`id`", "`create_at`", "`create_time`", "`created_at`", "`update_at`", "`update_time`", "`updated_at`"), ",")
appLogReportRecordRowsWithPlaceHolder = strings.Join(stringx.Remove(appLogReportRecordFieldNames, "`id`", "`create_at`", "`create_time`", "`created_at`", "`update_at`", "`update_time`", "`updated_at`"), "=?,") + "=?"
)
type (
appLogReportRecordModel interface {
Insert(ctx context.Context, data *AppLogReportRecord) (sql.Result, error)
FindOne(ctx context.Context, id int64) (*AppLogReportRecord, error)
Update(ctx context.Context, data *AppLogReportRecord) error
Delete(ctx context.Context, id int64) error
}
defaultAppLogReportRecordModel struct {
conn sqlx.SqlConn
table string
}
AppLogReportRecord struct {
Id int64 `db:"id"` // id
Uid int64 `db:"uid"` // user id
LogType string `db:"logType"` // 日志类型
Uuid string `db:"uuid"` // uuid
Platform string `db:"platform"` // 系统
AppVersion string `db:"appVersion"` // app版本
Content sql.NullString `db:"content"` // 创建时间
Ctime int64 `db:"ctime"` // 修改时间
}
)
func newAppLogReportRecordModel(conn sqlx.SqlConn) *defaultAppLogReportRecordModel {
return &defaultAppLogReportRecordModel{
conn: conn,
table: "`app_log_report_record`",
}
}
func (m *defaultAppLogReportRecordModel) 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 *defaultAppLogReportRecordModel) FindOne(ctx context.Context, id int64) (*AppLogReportRecord, error) {
query := fmt.Sprintf("select %s from %s where `id` = ? limit 1", appLogReportRecordRows, m.table)
var resp AppLogReportRecord
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 *defaultAppLogReportRecordModel) Insert(ctx context.Context, data *AppLogReportRecord) (sql.Result, error) {
query := fmt.Sprintf("insert into %s (%s) values (?, ?, ?, ?, ?, ?, ?)", m.table, appLogReportRecordRowsExpectAutoSet)
ret, err := m.conn.ExecCtx(ctx, query, data.Uid, data.LogType, data.Uuid, data.Platform, data.AppVersion, data.Content, data.Ctime)
return ret, err
}
func (m *defaultAppLogReportRecordModel) Update(ctx context.Context, data *AppLogReportRecord) error {
query := fmt.Sprintf("update %s set %s where `id` = ?", m.table, appLogReportRecordRowsWithPlaceHolder)
_, err := m.conn.ExecCtx(ctx, query, data.Uid, data.LogType, data.Uuid, data.Platform, data.AppVersion, data.Content, data.Ctime, data.Id)
return err
}
func (m *defaultAppLogReportRecordModel) tableName() string {
return m.table
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。