410 lines
15 KiB
Go
410 lines
15 KiB
Go
|
|
// Code generated by goctl. DO NOT EDIT!
|
|||
|
|
|
|||
|
|
package model
|
|||
|
|
|
|||
|
|
import (
|
|||
|
|
"context"
|
|||
|
|
"database/sql"
|
|||
|
|
"fmt"
|
|||
|
|
"strings"
|
|||
|
|
|
|||
|
|
"time"
|
|||
|
|
|
|||
|
|
"github.com/Masterminds/squirrel"
|
|||
|
|
"github.com/pkg/errors"
|
|||
|
|
"github.com/zeromicro/go-zero/core/stores/builder"
|
|||
|
|
"github.com/zeromicro/go-zero/core/stores/cache"
|
|||
|
|
"github.com/zeromicro/go-zero/core/stores/sqlc"
|
|||
|
|
"github.com/zeromicro/go-zero/core/stores/sqlx"
|
|||
|
|
"github.com/zeromicro/go-zero/core/stringx"
|
|||
|
|
"ycc-server/common/globalkey"
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
var (
|
|||
|
|
agentConfigFieldNames = builder.RawFieldNames(&AgentConfig{})
|
|||
|
|
agentConfigRows = strings.Join(agentConfigFieldNames, ",")
|
|||
|
|
agentConfigRowsExpectAutoSet = strings.Join(stringx.Remove(agentConfigFieldNames, "`id`", "`create_time`", "`update_time`"), ",")
|
|||
|
|
agentConfigRowsWithPlaceHolder = strings.Join(stringx.Remove(agentConfigFieldNames, "`id`", "`create_time`", "`update_time`"), "=?,") + "=?"
|
|||
|
|
|
|||
|
|
cacheYccAgentConfigIdPrefix = "cache:ycc:agentConfig:id:"
|
|||
|
|
cacheYccAgentConfigConfigKeyPrefix = "cache:ycc:agentConfig:configKey:"
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
type (
|
|||
|
|
agentConfigModel interface {
|
|||
|
|
Insert(ctx context.Context, session sqlx.Session, data *AgentConfig) (sql.Result, error)
|
|||
|
|
FindOne(ctx context.Context, id int64) (*AgentConfig, error)
|
|||
|
|
FindOneByConfigKey(ctx context.Context, configKey string) (*AgentConfig, error)
|
|||
|
|
Update(ctx context.Context, session sqlx.Session, data *AgentConfig) (sql.Result, error)
|
|||
|
|
UpdateWithVersion(ctx context.Context, session sqlx.Session, data *AgentConfig) error
|
|||
|
|
Trans(ctx context.Context, fn func(context context.Context, session sqlx.Session) error) error
|
|||
|
|
SelectBuilder() squirrel.SelectBuilder
|
|||
|
|
DeleteSoft(ctx context.Context, session sqlx.Session, data *AgentConfig) error
|
|||
|
|
FindSum(ctx context.Context, sumBuilder squirrel.SelectBuilder, field string) (float64, error)
|
|||
|
|
FindCount(ctx context.Context, countBuilder squirrel.SelectBuilder, field string) (int64, error)
|
|||
|
|
FindAll(ctx context.Context, rowBuilder squirrel.SelectBuilder, orderBy string) ([]*AgentConfig, error)
|
|||
|
|
FindPageListByPage(ctx context.Context, rowBuilder squirrel.SelectBuilder, page, pageSize int64, orderBy string) ([]*AgentConfig, error)
|
|||
|
|
FindPageListByPageWithTotal(ctx context.Context, rowBuilder squirrel.SelectBuilder, page, pageSize int64, orderBy string) ([]*AgentConfig, int64, error)
|
|||
|
|
FindPageListByIdDESC(ctx context.Context, rowBuilder squirrel.SelectBuilder, preMinId, pageSize int64) ([]*AgentConfig, error)
|
|||
|
|
FindPageListByIdASC(ctx context.Context, rowBuilder squirrel.SelectBuilder, preMaxId, pageSize int64) ([]*AgentConfig, error)
|
|||
|
|
Delete(ctx context.Context, session sqlx.Session, id int64) error
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
defaultAgentConfigModel struct {
|
|||
|
|
sqlc.CachedConn
|
|||
|
|
table string
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
AgentConfig struct {
|
|||
|
|
Id int64 `db:"id"` // 主键ID
|
|||
|
|
ConfigKey string `db:"config_key"` // 配置键
|
|||
|
|
ConfigValue string `db:"config_value"` // 配置值
|
|||
|
|
ConfigType string `db:"config_type"` // 配置类型:price=价格,bonus=等级加成,upgrade=升级费用,rebate=返佣,tax=税费
|
|||
|
|
Description sql.NullString `db:"description"` // 配置描述
|
|||
|
|
CreateTime time.Time `db:"create_time"` // 创建时间
|
|||
|
|
UpdateTime time.Time `db:"update_time"` // 更新时间
|
|||
|
|
DeleteTime sql.NullTime `db:"delete_time"` // 删除时间
|
|||
|
|
DelState int64 `db:"del_state"` // 删除状态:0=未删除,1=已删除
|
|||
|
|
Version int64 `db:"version"` // 版本号(乐观锁)
|
|||
|
|
}
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
func newAgentConfigModel(conn sqlx.SqlConn, c cache.CacheConf) *defaultAgentConfigModel {
|
|||
|
|
return &defaultAgentConfigModel{
|
|||
|
|
CachedConn: sqlc.NewConn(conn, c),
|
|||
|
|
table: "`agent_config`",
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func (m *defaultAgentConfigModel) Insert(ctx context.Context, session sqlx.Session, data *AgentConfig) (sql.Result, error) {
|
|||
|
|
data.DelState = globalkey.DelStateNo
|
|||
|
|
yccAgentConfigConfigKeyKey := fmt.Sprintf("%s%v", cacheYccAgentConfigConfigKeyPrefix, data.ConfigKey)
|
|||
|
|
yccAgentConfigIdKey := fmt.Sprintf("%s%v", cacheYccAgentConfigIdPrefix, data.Id)
|
|||
|
|
return m.ExecCtx(ctx, func(ctx context.Context, conn sqlx.SqlConn) (result sql.Result, err error) {
|
|||
|
|
query := fmt.Sprintf("insert into %s (%s) values (?, ?, ?, ?, ?, ?, ?)", m.table, agentConfigRowsExpectAutoSet)
|
|||
|
|
if session != nil {
|
|||
|
|
return session.ExecCtx(ctx, query, data.ConfigKey, data.ConfigValue, data.ConfigType, data.Description, data.DeleteTime, data.DelState, data.Version)
|
|||
|
|
}
|
|||
|
|
return conn.ExecCtx(ctx, query, data.ConfigKey, data.ConfigValue, data.ConfigType, data.Description, data.DeleteTime, data.DelState, data.Version)
|
|||
|
|
}, yccAgentConfigConfigKeyKey, yccAgentConfigIdKey)
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func (m *defaultAgentConfigModel) FindOne(ctx context.Context, id int64) (*AgentConfig, error) {
|
|||
|
|
yccAgentConfigIdKey := fmt.Sprintf("%s%v", cacheYccAgentConfigIdPrefix, id)
|
|||
|
|
var resp AgentConfig
|
|||
|
|
err := m.QueryRowCtx(ctx, &resp, yccAgentConfigIdKey, func(ctx context.Context, conn sqlx.SqlConn, v interface{}) error {
|
|||
|
|
query := fmt.Sprintf("select %s from %s where `id` = ? and del_state = ? limit 1", agentConfigRows, m.table)
|
|||
|
|
return conn.QueryRowCtx(ctx, v, query, id, globalkey.DelStateNo)
|
|||
|
|
})
|
|||
|
|
switch err {
|
|||
|
|
case nil:
|
|||
|
|
return &resp, nil
|
|||
|
|
case sqlc.ErrNotFound:
|
|||
|
|
return nil, ErrNotFound
|
|||
|
|
default:
|
|||
|
|
return nil, err
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func (m *defaultAgentConfigModel) FindOneByConfigKey(ctx context.Context, configKey string) (*AgentConfig, error) {
|
|||
|
|
yccAgentConfigConfigKeyKey := fmt.Sprintf("%s%v", cacheYccAgentConfigConfigKeyPrefix, configKey)
|
|||
|
|
var resp AgentConfig
|
|||
|
|
err := m.QueryRowIndexCtx(ctx, &resp, yccAgentConfigConfigKeyKey, m.formatPrimary, func(ctx context.Context, conn sqlx.SqlConn, v interface{}) (i interface{}, e error) {
|
|||
|
|
query := fmt.Sprintf("select %s from %s where `config_key` = ? and del_state = ? limit 1", agentConfigRows, m.table)
|
|||
|
|
if err := conn.QueryRowCtx(ctx, &resp, query, configKey, globalkey.DelStateNo); err != nil {
|
|||
|
|
return nil, err
|
|||
|
|
}
|
|||
|
|
return resp.Id, nil
|
|||
|
|
}, m.queryPrimary)
|
|||
|
|
switch err {
|
|||
|
|
case nil:
|
|||
|
|
return &resp, nil
|
|||
|
|
case sqlc.ErrNotFound:
|
|||
|
|
return nil, ErrNotFound
|
|||
|
|
default:
|
|||
|
|
return nil, err
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func (m *defaultAgentConfigModel) Update(ctx context.Context, session sqlx.Session, newData *AgentConfig) (sql.Result, error) {
|
|||
|
|
data, err := m.FindOne(ctx, newData.Id)
|
|||
|
|
if err != nil {
|
|||
|
|
return nil, err
|
|||
|
|
}
|
|||
|
|
yccAgentConfigConfigKeyKey := fmt.Sprintf("%s%v", cacheYccAgentConfigConfigKeyPrefix, data.ConfigKey)
|
|||
|
|
yccAgentConfigIdKey := fmt.Sprintf("%s%v", cacheYccAgentConfigIdPrefix, data.Id)
|
|||
|
|
return m.ExecCtx(ctx, func(ctx context.Context, conn sqlx.SqlConn) (result sql.Result, err error) {
|
|||
|
|
query := fmt.Sprintf("update %s set %s where `id` = ?", m.table, agentConfigRowsWithPlaceHolder)
|
|||
|
|
if session != nil {
|
|||
|
|
return session.ExecCtx(ctx, query, newData.ConfigKey, newData.ConfigValue, newData.ConfigType, newData.Description, newData.DeleteTime, newData.DelState, newData.Version, newData.Id)
|
|||
|
|
}
|
|||
|
|
return conn.ExecCtx(ctx, query, newData.ConfigKey, newData.ConfigValue, newData.ConfigType, newData.Description, newData.DeleteTime, newData.DelState, newData.Version, newData.Id)
|
|||
|
|
}, yccAgentConfigConfigKeyKey, yccAgentConfigIdKey)
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func (m *defaultAgentConfigModel) UpdateWithVersion(ctx context.Context, session sqlx.Session, newData *AgentConfig) error {
|
|||
|
|
|
|||
|
|
oldVersion := newData.Version
|
|||
|
|
newData.Version += 1
|
|||
|
|
|
|||
|
|
var sqlResult sql.Result
|
|||
|
|
var err error
|
|||
|
|
|
|||
|
|
data, err := m.FindOne(ctx, newData.Id)
|
|||
|
|
if err != nil {
|
|||
|
|
return err
|
|||
|
|
}
|
|||
|
|
yccAgentConfigConfigKeyKey := fmt.Sprintf("%s%v", cacheYccAgentConfigConfigKeyPrefix, data.ConfigKey)
|
|||
|
|
yccAgentConfigIdKey := fmt.Sprintf("%s%v", cacheYccAgentConfigIdPrefix, data.Id)
|
|||
|
|
sqlResult, err = m.ExecCtx(ctx, func(ctx context.Context, conn sqlx.SqlConn) (result sql.Result, err error) {
|
|||
|
|
query := fmt.Sprintf("update %s set %s where `id` = ? and version = ? ", m.table, agentConfigRowsWithPlaceHolder)
|
|||
|
|
if session != nil {
|
|||
|
|
return session.ExecCtx(ctx, query, newData.ConfigKey, newData.ConfigValue, newData.ConfigType, newData.Description, newData.DeleteTime, newData.DelState, newData.Version, newData.Id, oldVersion)
|
|||
|
|
}
|
|||
|
|
return conn.ExecCtx(ctx, query, newData.ConfigKey, newData.ConfigValue, newData.ConfigType, newData.Description, newData.DeleteTime, newData.DelState, newData.Version, newData.Id, oldVersion)
|
|||
|
|
}, yccAgentConfigConfigKeyKey, yccAgentConfigIdKey)
|
|||
|
|
if err != nil {
|
|||
|
|
return err
|
|||
|
|
}
|
|||
|
|
updateCount, err := sqlResult.RowsAffected()
|
|||
|
|
if err != nil {
|
|||
|
|
return err
|
|||
|
|
}
|
|||
|
|
if updateCount == 0 {
|
|||
|
|
return ErrNoRowsUpdate
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return nil
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func (m *defaultAgentConfigModel) DeleteSoft(ctx context.Context, session sqlx.Session, data *AgentConfig) error {
|
|||
|
|
data.DelState = globalkey.DelStateYes
|
|||
|
|
data.DeleteTime = sql.NullTime{Time: time.Now(), Valid: true}
|
|||
|
|
if err := m.UpdateWithVersion(ctx, session, data); err != nil {
|
|||
|
|
return errors.Wrapf(errors.New("delete soft failed "), "AgentConfigModel delete err : %+v", err)
|
|||
|
|
}
|
|||
|
|
return nil
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func (m *defaultAgentConfigModel) FindSum(ctx context.Context, builder squirrel.SelectBuilder, field string) (float64, error) {
|
|||
|
|
|
|||
|
|
if len(field) == 0 {
|
|||
|
|
return 0, errors.Wrapf(errors.New("FindSum Least One Field"), "FindSum Least One Field")
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
builder = builder.Columns("IFNULL(SUM(" + field + "),0)")
|
|||
|
|
|
|||
|
|
query, values, err := builder.Where("del_state = ?", globalkey.DelStateNo).ToSql()
|
|||
|
|
if err != nil {
|
|||
|
|
return 0, err
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
var resp float64
|
|||
|
|
err = m.QueryRowNoCacheCtx(ctx, &resp, query, values...)
|
|||
|
|
switch err {
|
|||
|
|
case nil:
|
|||
|
|
return resp, nil
|
|||
|
|
default:
|
|||
|
|
return 0, err
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func (m *defaultAgentConfigModel) FindCount(ctx context.Context, builder squirrel.SelectBuilder, field string) (int64, error) {
|
|||
|
|
|
|||
|
|
if len(field) == 0 {
|
|||
|
|
return 0, errors.Wrapf(errors.New("FindCount Least One Field"), "FindCount Least One Field")
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
builder = builder.Columns("COUNT(" + field + ")")
|
|||
|
|
|
|||
|
|
query, values, err := builder.Where("del_state = ?", globalkey.DelStateNo).ToSql()
|
|||
|
|
if err != nil {
|
|||
|
|
return 0, err
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
var resp int64
|
|||
|
|
err = m.QueryRowNoCacheCtx(ctx, &resp, query, values...)
|
|||
|
|
switch err {
|
|||
|
|
case nil:
|
|||
|
|
return resp, nil
|
|||
|
|
default:
|
|||
|
|
return 0, err
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func (m *defaultAgentConfigModel) FindAll(ctx context.Context, builder squirrel.SelectBuilder, orderBy string) ([]*AgentConfig, error) {
|
|||
|
|
|
|||
|
|
builder = builder.Columns(agentConfigRows)
|
|||
|
|
|
|||
|
|
if orderBy == "" {
|
|||
|
|
builder = builder.OrderBy("id DESC")
|
|||
|
|
} else {
|
|||
|
|
builder = builder.OrderBy(orderBy)
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
query, values, err := builder.Where("del_state = ?", globalkey.DelStateNo).ToSql()
|
|||
|
|
if err != nil {
|
|||
|
|
return nil, err
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
var resp []*AgentConfig
|
|||
|
|
err = m.QueryRowsNoCacheCtx(ctx, &resp, query, values...)
|
|||
|
|
switch err {
|
|||
|
|
case nil:
|
|||
|
|
return resp, nil
|
|||
|
|
default:
|
|||
|
|
return nil, err
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func (m *defaultAgentConfigModel) FindPageListByPage(ctx context.Context, builder squirrel.SelectBuilder, page, pageSize int64, orderBy string) ([]*AgentConfig, error) {
|
|||
|
|
|
|||
|
|
builder = builder.Columns(agentConfigRows)
|
|||
|
|
|
|||
|
|
if orderBy == "" {
|
|||
|
|
builder = builder.OrderBy("id DESC")
|
|||
|
|
} else {
|
|||
|
|
builder = builder.OrderBy(orderBy)
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if page < 1 {
|
|||
|
|
page = 1
|
|||
|
|
}
|
|||
|
|
offset := (page - 1) * pageSize
|
|||
|
|
|
|||
|
|
query, values, err := builder.Where("del_state = ?", globalkey.DelStateNo).Offset(uint64(offset)).Limit(uint64(pageSize)).ToSql()
|
|||
|
|
if err != nil {
|
|||
|
|
return nil, err
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
var resp []*AgentConfig
|
|||
|
|
err = m.QueryRowsNoCacheCtx(ctx, &resp, query, values...)
|
|||
|
|
switch err {
|
|||
|
|
case nil:
|
|||
|
|
return resp, nil
|
|||
|
|
default:
|
|||
|
|
return nil, err
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func (m *defaultAgentConfigModel) FindPageListByPageWithTotal(ctx context.Context, builder squirrel.SelectBuilder, page, pageSize int64, orderBy string) ([]*AgentConfig, int64, error) {
|
|||
|
|
|
|||
|
|
total, err := m.FindCount(ctx, builder, "id")
|
|||
|
|
if err != nil {
|
|||
|
|
return nil, 0, err
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
builder = builder.Columns(agentConfigRows)
|
|||
|
|
|
|||
|
|
if orderBy == "" {
|
|||
|
|
builder = builder.OrderBy("id DESC")
|
|||
|
|
} else {
|
|||
|
|
builder = builder.OrderBy(orderBy)
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if page < 1 {
|
|||
|
|
page = 1
|
|||
|
|
}
|
|||
|
|
offset := (page - 1) * pageSize
|
|||
|
|
|
|||
|
|
query, values, err := builder.Where("del_state = ?", globalkey.DelStateNo).Offset(uint64(offset)).Limit(uint64(pageSize)).ToSql()
|
|||
|
|
if err != nil {
|
|||
|
|
return nil, total, err
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
var resp []*AgentConfig
|
|||
|
|
err = m.QueryRowsNoCacheCtx(ctx, &resp, query, values...)
|
|||
|
|
switch err {
|
|||
|
|
case nil:
|
|||
|
|
return resp, total, nil
|
|||
|
|
default:
|
|||
|
|
return nil, total, err
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func (m *defaultAgentConfigModel) FindPageListByIdDESC(ctx context.Context, builder squirrel.SelectBuilder, preMinId, pageSize int64) ([]*AgentConfig, error) {
|
|||
|
|
|
|||
|
|
builder = builder.Columns(agentConfigRows)
|
|||
|
|
|
|||
|
|
if preMinId > 0 {
|
|||
|
|
builder = builder.Where(" id < ? ", preMinId)
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
query, values, err := builder.Where("del_state = ?", globalkey.DelStateNo).OrderBy("id DESC").Limit(uint64(pageSize)).ToSql()
|
|||
|
|
if err != nil {
|
|||
|
|
return nil, err
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
var resp []*AgentConfig
|
|||
|
|
err = m.QueryRowsNoCacheCtx(ctx, &resp, query, values...)
|
|||
|
|
switch err {
|
|||
|
|
case nil:
|
|||
|
|
return resp, nil
|
|||
|
|
default:
|
|||
|
|
return nil, err
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func (m *defaultAgentConfigModel) FindPageListByIdASC(ctx context.Context, builder squirrel.SelectBuilder, preMaxId, pageSize int64) ([]*AgentConfig, error) {
|
|||
|
|
|
|||
|
|
builder = builder.Columns(agentConfigRows)
|
|||
|
|
|
|||
|
|
if preMaxId > 0 {
|
|||
|
|
builder = builder.Where(" id > ? ", preMaxId)
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
query, values, err := builder.Where("del_state = ?", globalkey.DelStateNo).OrderBy("id ASC").Limit(uint64(pageSize)).ToSql()
|
|||
|
|
if err != nil {
|
|||
|
|
return nil, err
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
var resp []*AgentConfig
|
|||
|
|
err = m.QueryRowsNoCacheCtx(ctx, &resp, query, values...)
|
|||
|
|
switch err {
|
|||
|
|
case nil:
|
|||
|
|
return resp, nil
|
|||
|
|
default:
|
|||
|
|
return nil, err
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func (m *defaultAgentConfigModel) Trans(ctx context.Context, fn func(ctx context.Context, session sqlx.Session) error) error {
|
|||
|
|
|
|||
|
|
return m.TransactCtx(ctx, func(ctx context.Context, session sqlx.Session) error {
|
|||
|
|
return fn(ctx, session)
|
|||
|
|
})
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func (m *defaultAgentConfigModel) SelectBuilder() squirrel.SelectBuilder {
|
|||
|
|
return squirrel.Select().From(m.table)
|
|||
|
|
}
|
|||
|
|
func (m *defaultAgentConfigModel) Delete(ctx context.Context, session sqlx.Session, id int64) error {
|
|||
|
|
data, err := m.FindOne(ctx, id)
|
|||
|
|
if err != nil {
|
|||
|
|
return err
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
yccAgentConfigConfigKeyKey := fmt.Sprintf("%s%v", cacheYccAgentConfigConfigKeyPrefix, data.ConfigKey)
|
|||
|
|
yccAgentConfigIdKey := fmt.Sprintf("%s%v", cacheYccAgentConfigIdPrefix, id)
|
|||
|
|
_, err = m.ExecCtx(ctx, func(ctx context.Context, conn sqlx.SqlConn) (result sql.Result, err error) {
|
|||
|
|
query := fmt.Sprintf("delete from %s where `id` = ?", m.table)
|
|||
|
|
if session != nil {
|
|||
|
|
return session.ExecCtx(ctx, query, id)
|
|||
|
|
}
|
|||
|
|
return conn.ExecCtx(ctx, query, id)
|
|||
|
|
}, yccAgentConfigConfigKeyKey, yccAgentConfigIdKey)
|
|||
|
|
return err
|
|||
|
|
}
|
|||
|
|
func (m *defaultAgentConfigModel) formatPrimary(primary interface{}) string {
|
|||
|
|
return fmt.Sprintf("%s%v", cacheYccAgentConfigIdPrefix, primary)
|
|||
|
|
}
|
|||
|
|
func (m *defaultAgentConfigModel) queryPrimary(ctx context.Context, conn sqlx.SqlConn, v, primary interface{}) error {
|
|||
|
|
query := fmt.Sprintf("select %s from %s where `id` = ? and del_state = ? limit 1", agentConfigRows, m.table)
|
|||
|
|
return conn.QueryRowCtx(ctx, v, query, primary, globalkey.DelStateNo)
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func (m *defaultAgentConfigModel) tableName() string {
|
|||
|
|
return m.table
|
|||
|
|
}
|