1 Star 0 Fork 0

gabbble/app

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
applflytekkeyinfomodel_gen.go 3.09 KB
一键复制 编辑 原始数据 按行查看 历史
haozhiyuan0204 提交于 2023-11-08 14:34 . 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 (
appLflytekKeyInfoFieldNames = builder.RawFieldNames(&AppLflytekKeyInfo{})
appLflytekKeyInfoRows = strings.Join(appLflytekKeyInfoFieldNames, ",")
appLflytekKeyInfoRowsExpectAutoSet = strings.Join(stringx.Remove(appLflytekKeyInfoFieldNames, "`id`", "`create_at`", "`create_time`", "`created_at`", "`update_at`", "`update_time`", "`updated_at`"), ",")
appLflytekKeyInfoRowsWithPlaceHolder = strings.Join(stringx.Remove(appLflytekKeyInfoFieldNames, "`id`", "`create_at`", "`create_time`", "`created_at`", "`update_at`", "`update_time`", "`updated_at`"), "=?,") + "=?"
)
type (
appLflytekKeyInfoModel interface {
Insert(ctx context.Context, data *AppLflytekKeyInfo) (sql.Result, error)
FindOne(ctx context.Context, id int64) (*AppLflytekKeyInfo, error)
FindOneLatest(ctx context.Context) (*AppLflytekKeyInfo, error)
Update(ctx context.Context, data *AppLflytekKeyInfo) error
Delete(ctx context.Context, id int64) error
}
defaultAppLflytekKeyInfoModel struct {
conn sqlx.SqlConn
table string
}
AppLflytekKeyInfo struct {
Id int64 `db:"id"` // id
AppID string `db:"appID"` // 日志类型
ApiSecret string `db:"apiSecret"` // uuid
ApiKey string `db:"apiKey"` // 系统
Ctime int64 `db:"ctime"` // 修改时间
}
)
func newAppLflytekKeyInfoModel(conn sqlx.SqlConn) *defaultAppLflytekKeyInfoModel {
return &defaultAppLflytekKeyInfoModel{
conn: conn,
table: "`app_lflytek_key_info`",
}
}
func (m *defaultAppLflytekKeyInfoModel) 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 *defaultAppLflytekKeyInfoModel) FindOne(ctx context.Context, id int64) (*AppLflytekKeyInfo, error) {
query := fmt.Sprintf("select %s from %s where `id` = ? limit 1", appLflytekKeyInfoRows, m.table)
var resp AppLflytekKeyInfo
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 *defaultAppLflytekKeyInfoModel) Insert(ctx context.Context, data *AppLflytekKeyInfo) (sql.Result, error) {
query := fmt.Sprintf("insert into %s (%s) values (?, ?, ?, ?)", m.table, appLflytekKeyInfoRowsExpectAutoSet)
ret, err := m.conn.ExecCtx(ctx, query, data.AppID, data.ApiSecret, data.ApiKey, data.Ctime)
return ret, err
}
func (m *defaultAppLflytekKeyInfoModel) Update(ctx context.Context, data *AppLflytekKeyInfo) error {
query := fmt.Sprintf("update %s set %s where `id` = ?", m.table, appLflytekKeyInfoRowsWithPlaceHolder)
_, err := m.conn.ExecCtx(ctx, query, data.AppID, data.ApiSecret, data.ApiKey, data.Ctime, data.Id)
return err
}
func (m *defaultAppLflytekKeyInfoModel) tableName() string {
return m.table
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/gabbble/app.git
git@gitee.com:gabbble/app.git
gabbble
app
app
9a5bcbd7ccf5

搜索帮助