437 lines
17 KiB
Go
437 lines
17 KiB
Go
// Code generated by goctl. DO NOT EDIT!
|
||
|
||
package model
|
||
|
||
import (
|
||
"context"
|
||
"database/sql"
|
||
"fmt"
|
||
"qnc-server/deploy/script/model"
|
||
"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"
|
||
"qnc-server/common/globalkey"
|
||
)
|
||
|
||
var (
|
||
productFeatureFieldNames = builder.RawFieldNames(&ProductFeature{})
|
||
productFeatureRows = strings.Join(productFeatureFieldNames, ",")
|
||
productFeatureRowsExpectAutoSet = strings.Join(stringx.Remove(productFeatureFieldNames, "`id`", "`create_time`", "`update_time`"), ",")
|
||
productFeatureRowsWithPlaceHolder = strings.Join(stringx.Remove(productFeatureFieldNames, "`id`", "`create_time`", "`update_time`"), "=?,") + "=?"
|
||
|
||
cacheQncProductFeatureIdPrefix = "cache:qnc:productFeature:id:"
|
||
cacheQncProductFeatureProductIdFeatureIdPrefix = "cache:qnc:productFeature:productId:featureId:"
|
||
cacheQncProductFeatureProductIdSortPrefix = "cache:qnc:productFeature:productId:sort:"
|
||
)
|
||
|
||
type (
|
||
productFeatureModel interface {
|
||
Insert(ctx context.Context, session sqlx.Session, data *ProductFeature) (sql.Result, error)
|
||
FindOne(ctx context.Context, id int64) (*ProductFeature, error)
|
||
FindOneByProductIdFeatureId(ctx context.Context, productId int64, featureId int64) (*ProductFeature, error)
|
||
FindOneByProductIdSort(ctx context.Context, productId int64, sort int64) (*ProductFeature, error)
|
||
Update(ctx context.Context, session sqlx.Session, data *ProductFeature) (sql.Result, error)
|
||
UpdateWithVersion(ctx context.Context, session sqlx.Session, data *ProductFeature) 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 *ProductFeature) 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) ([]*ProductFeature, error)
|
||
FindPageListByPage(ctx context.Context, rowBuilder squirrel.SelectBuilder, page, pageSize int64, orderBy string) ([]*ProductFeature, error)
|
||
FindPageListByPageWithTotal(ctx context.Context, rowBuilder squirrel.SelectBuilder, page, pageSize int64, orderBy string) ([]*ProductFeature, int64, error)
|
||
FindPageListByIdDESC(ctx context.Context, rowBuilder squirrel.SelectBuilder, preMinId, pageSize int64) ([]*ProductFeature, error)
|
||
FindPageListByIdASC(ctx context.Context, rowBuilder squirrel.SelectBuilder, preMaxId, pageSize int64) ([]*ProductFeature, error)
|
||
Delete(ctx context.Context, session sqlx.Session, id int64) error
|
||
}
|
||
|
||
defaultProductFeatureModel struct {
|
||
sqlc.CachedConn
|
||
table string
|
||
}
|
||
|
||
ProductFeature struct {
|
||
Id int64 `db:"id"` // 主键ID
|
||
ProductId int64 `db:"product_id"` // 产品ID
|
||
FeatureId int64 `db:"feature_id"` // 功能ID
|
||
CreateTime time.Time `db:"create_time"` // 创建时间
|
||
UpdateTime time.Time `db:"update_time"` // 更新时间
|
||
DeleteTime sql.NullTime `db:"delete_time"` // 删除时间
|
||
DelState int64 `db:"del_state"` // 删除状态
|
||
Version int64 `db:"version"` // 版本号
|
||
Sort int64 `db:"sort"` // 排序字段
|
||
IsImportant int64 `db:"is_important"` // 是否重要,1为重要,0为不重要
|
||
}
|
||
)
|
||
|
||
func newProductFeatureModel(conn sqlx.SqlConn, c cache.CacheConf) *defaultProductFeatureModel {
|
||
return &defaultProductFeatureModel{
|
||
CachedConn: sqlc.NewConn(conn, c),
|
||
table: "`product_feature`",
|
||
}
|
||
}
|
||
|
||
func (m *defaultProductFeatureModel) Insert(ctx context.Context, session sqlx.Session, data *ProductFeature) (sql.Result, error) {
|
||
data.DelState = globalkey.DelStateNo
|
||
qncProductFeatureIdKey := fmt.Sprintf("%s%v", cacheQncProductFeatureIdPrefix, data.Id)
|
||
qncProductFeatureProductIdFeatureIdKey := fmt.Sprintf("%s%v:%v", cacheQncProductFeatureProductIdFeatureIdPrefix, data.ProductId, data.FeatureId)
|
||
qncProductFeatureProductIdSortKey := fmt.Sprintf("%s%v:%v", cacheQncProductFeatureProductIdSortPrefix, data.ProductId, data.Sort)
|
||
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, productFeatureRowsExpectAutoSet)
|
||
if session != nil {
|
||
return session.ExecCtx(ctx, query, data.ProductId, data.FeatureId, data.DeleteTime, data.DelState, data.Version, data.Sort, data.IsImportant)
|
||
}
|
||
return conn.ExecCtx(ctx, query, data.ProductId, data.FeatureId, data.DeleteTime, data.DelState, data.Version, data.Sort, data.IsImportant)
|
||
}, qncProductFeatureIdKey, qncProductFeatureProductIdFeatureIdKey, qncProductFeatureProductIdSortKey)
|
||
}
|
||
|
||
func (m *defaultProductFeatureModel) FindOne(ctx context.Context, id int64) (*ProductFeature, error) {
|
||
qncProductFeatureIdKey := fmt.Sprintf("%s%v", cacheQncProductFeatureIdPrefix, id)
|
||
var resp ProductFeature
|
||
err := m.QueryRowCtx(ctx, &resp, qncProductFeatureIdKey, func(ctx context.Context, conn sqlx.SqlConn, v interface{}) error {
|
||
query := fmt.Sprintf("SELECT %s FROM %s WHERE `id` = ? AND del_state = ? limit 1", productFeatureRows, m.table)
|
||
return conn.QueryRowCtx(ctx, v, query, id, globalkey.DelStateNo)
|
||
})
|
||
switch err {
|
||
case nil:
|
||
return &resp, nil
|
||
case sqlc.ErrNotFound:
|
||
return nil, model.ErrNotFound
|
||
default:
|
||
return nil, err
|
||
}
|
||
}
|
||
|
||
func (m *defaultProductFeatureModel) FindOneByProductIdFeatureId(ctx context.Context, productId int64, featureId int64) (*ProductFeature, error) {
|
||
qncProductFeatureProductIdFeatureIdKey := fmt.Sprintf("%s%v:%v", cacheQncProductFeatureProductIdFeatureIdPrefix, productId, featureId)
|
||
var resp ProductFeature
|
||
err := m.QueryRowIndexCtx(ctx, &resp, qncProductFeatureProductIdFeatureIdKey, m.formatPrimary, func(ctx context.Context, conn sqlx.SqlConn, v interface{}) (i interface{}, e error) {
|
||
query := fmt.Sprintf("SELECT %s FROM %s WHERE `product_id` = ? AND `feature_id` = ? AND del_state = ? limit 1", productFeatureRows, m.table)
|
||
if err := conn.QueryRowCtx(ctx, &resp, query, productId, featureId, 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, model.ErrNotFound
|
||
default:
|
||
return nil, err
|
||
}
|
||
}
|
||
|
||
func (m *defaultProductFeatureModel) FindOneByProductIdSort(ctx context.Context, productId int64, sort int64) (*ProductFeature, error) {
|
||
qncProductFeatureProductIdSortKey := fmt.Sprintf("%s%v:%v", cacheQncProductFeatureProductIdSortPrefix, productId, sort)
|
||
var resp ProductFeature
|
||
err := m.QueryRowIndexCtx(ctx, &resp, qncProductFeatureProductIdSortKey, m.formatPrimary, func(ctx context.Context, conn sqlx.SqlConn, v interface{}) (i interface{}, e error) {
|
||
query := fmt.Sprintf("SELECT %s FROM %s WHERE `product_id` = ? AND `sort` = ? AND del_state = ? limit 1", productFeatureRows, m.table)
|
||
if err := conn.QueryRowCtx(ctx, &resp, query, productId, sort, 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, model.ErrNotFound
|
||
default:
|
||
return nil, err
|
||
}
|
||
}
|
||
|
||
func (m *defaultProductFeatureModel) Update(ctx context.Context, session sqlx.Session, newData *ProductFeature) (sql.Result, error) {
|
||
data, err := m.FindOne(ctx, newData.Id)
|
||
if err != nil {
|
||
return nil, err
|
||
}
|
||
qncProductFeatureIdKey := fmt.Sprintf("%s%v", cacheQncProductFeatureIdPrefix, data.Id)
|
||
qncProductFeatureProductIdFeatureIdKey := fmt.Sprintf("%s%v:%v", cacheQncProductFeatureProductIdFeatureIdPrefix, data.ProductId, data.FeatureId)
|
||
qncProductFeatureProductIdSortKey := fmt.Sprintf("%s%v:%v", cacheQncProductFeatureProductIdSortPrefix, data.ProductId, data.Sort)
|
||
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, productFeatureRowsWithPlaceHolder)
|
||
if session != nil {
|
||
return session.ExecCtx(ctx, query, newData.ProductId, newData.FeatureId, newData.DeleteTime, newData.DelState, newData.Version, newData.Sort, newData.IsImportant, newData.Id)
|
||
}
|
||
return conn.ExecCtx(ctx, query, newData.ProductId, newData.FeatureId, newData.DeleteTime, newData.DelState, newData.Version, newData.Sort, newData.IsImportant, newData.Id)
|
||
}, qncProductFeatureIdKey, qncProductFeatureProductIdFeatureIdKey, qncProductFeatureProductIdSortKey)
|
||
}
|
||
|
||
func (m *defaultProductFeatureModel) UpdateWithVersion(ctx context.Context, session sqlx.Session, newData *ProductFeature) 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
|
||
}
|
||
qncProductFeatureIdKey := fmt.Sprintf("%s%v", cacheQncProductFeatureIdPrefix, data.Id)
|
||
qncProductFeatureProductIdFeatureIdKey := fmt.Sprintf("%s%v:%v", cacheQncProductFeatureProductIdFeatureIdPrefix, data.ProductId, data.FeatureId)
|
||
qncProductFeatureProductIdSortKey := fmt.Sprintf("%s%v:%v", cacheQncProductFeatureProductIdSortPrefix, data.ProductId, data.Sort)
|
||
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, productFeatureRowsWithPlaceHolder)
|
||
if session != nil {
|
||
return session.ExecCtx(ctx, query, newData.ProductId, newData.FeatureId, newData.DeleteTime, newData.DelState, newData.Version, newData.Sort, newData.IsImportant, newData.Id, oldVersion)
|
||
}
|
||
return conn.ExecCtx(ctx, query, newData.ProductId, newData.FeatureId, newData.DeleteTime, newData.DelState, newData.Version, newData.Sort, newData.IsImportant, newData.Id, oldVersion)
|
||
}, qncProductFeatureIdKey, qncProductFeatureProductIdFeatureIdKey, qncProductFeatureProductIdSortKey)
|
||
if err != nil {
|
||
return err
|
||
}
|
||
updateCount, err := sqlResult.RowsAffected()
|
||
if err != nil {
|
||
return err
|
||
}
|
||
if updateCount == 0 {
|
||
return model.ErrNoRowsUpdate
|
||
}
|
||
|
||
return nil
|
||
}
|
||
|
||
func (m *defaultProductFeatureModel) DeleteSoft(ctx context.Context, session sqlx.Session, data *ProductFeature) 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 "), "ProductFeatureModel delete err : %+v", err)
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (m *defaultProductFeatureModel) 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 *defaultProductFeatureModel) 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 *defaultProductFeatureModel) FindAll(ctx context.Context, builder squirrel.SelectBuilder, orderBy string) ([]*ProductFeature, error) {
|
||
|
||
builder = builder.Columns(productFeatureRows)
|
||
|
||
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 []*ProductFeature
|
||
err = m.QueryRowsNoCacheCtx(ctx, &resp, query, values...)
|
||
switch err {
|
||
case nil:
|
||
return resp, nil
|
||
default:
|
||
return nil, err
|
||
}
|
||
}
|
||
|
||
func (m *defaultProductFeatureModel) FindPageListByPage(ctx context.Context, builder squirrel.SelectBuilder, page, pageSize int64, orderBy string) ([]*ProductFeature, error) {
|
||
|
||
builder = builder.Columns(productFeatureRows)
|
||
|
||
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 []*ProductFeature
|
||
err = m.QueryRowsNoCacheCtx(ctx, &resp, query, values...)
|
||
switch err {
|
||
case nil:
|
||
return resp, nil
|
||
default:
|
||
return nil, err
|
||
}
|
||
}
|
||
|
||
func (m *defaultProductFeatureModel) FindPageListByPageWithTotal(ctx context.Context, builder squirrel.SelectBuilder, page, pageSize int64, orderBy string) ([]*ProductFeature, int64, error) {
|
||
|
||
total, err := m.FindCount(ctx, builder, "id")
|
||
if err != nil {
|
||
return nil, 0, err
|
||
}
|
||
|
||
builder = builder.Columns(productFeatureRows)
|
||
|
||
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 []*ProductFeature
|
||
err = m.QueryRowsNoCacheCtx(ctx, &resp, query, values...)
|
||
switch err {
|
||
case nil:
|
||
return resp, total, nil
|
||
default:
|
||
return nil, total, err
|
||
}
|
||
}
|
||
|
||
func (m *defaultProductFeatureModel) FindPageListByIdDESC(ctx context.Context, builder squirrel.SelectBuilder, preMinId, pageSize int64) ([]*ProductFeature, error) {
|
||
|
||
builder = builder.Columns(productFeatureRows)
|
||
|
||
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 []*ProductFeature
|
||
err = m.QueryRowsNoCacheCtx(ctx, &resp, query, values...)
|
||
switch err {
|
||
case nil:
|
||
return resp, nil
|
||
default:
|
||
return nil, err
|
||
}
|
||
}
|
||
|
||
func (m *defaultProductFeatureModel) FindPageListByIdASC(ctx context.Context, builder squirrel.SelectBuilder, preMaxId, pageSize int64) ([]*ProductFeature, error) {
|
||
|
||
builder = builder.Columns(productFeatureRows)
|
||
|
||
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 []*ProductFeature
|
||
err = m.QueryRowsNoCacheCtx(ctx, &resp, query, values...)
|
||
switch err {
|
||
case nil:
|
||
return resp, nil
|
||
default:
|
||
return nil, err
|
||
}
|
||
}
|
||
|
||
func (m *defaultProductFeatureModel) 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 *defaultProductFeatureModel) SelectBuilder() squirrel.SelectBuilder {
|
||
return squirrel.Select().From(m.table)
|
||
}
|
||
func (m *defaultProductFeatureModel) Delete(ctx context.Context, session sqlx.Session, id int64) error {
|
||
data, err := m.FindOne(ctx, id)
|
||
if err != nil {
|
||
return err
|
||
}
|
||
|
||
qncProductFeatureIdKey := fmt.Sprintf("%s%v", cacheQncProductFeatureIdPrefix, id)
|
||
qncProductFeatureProductIdFeatureIdKey := fmt.Sprintf("%s%v:%v", cacheQncProductFeatureProductIdFeatureIdPrefix, data.ProductId, data.FeatureId)
|
||
qncProductFeatureProductIdSortKey := fmt.Sprintf("%s%v:%v", cacheQncProductFeatureProductIdSortPrefix, data.ProductId, data.Sort)
|
||
_, 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)
|
||
}, qncProductFeatureIdKey, qncProductFeatureProductIdFeatureIdKey, qncProductFeatureProductIdSortKey)
|
||
return err
|
||
}
|
||
func (m *defaultProductFeatureModel) formatPrimary(primary interface{}) string {
|
||
return fmt.Sprintf("%s%v", cacheQncProductFeatureIdPrefix, primary)
|
||
}
|
||
func (m *defaultProductFeatureModel) 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", productFeatureRows, m.table)
|
||
return conn.QueryRowCtx(ctx, v, query, primary, globalkey.DelStateNo)
|
||
}
|
||
|
||
func (m *defaultProductFeatureModel) tableName() string {
|
||
return m.table
|
||
}
|