415 lines
15 KiB
Go
415 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"
|
||
|
"qnc-server/common/globalkey"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
adminMenuFieldNames = builder.RawFieldNames(&AdminMenu{})
|
||
|
adminMenuRows = strings.Join(adminMenuFieldNames, ",")
|
||
|
adminMenuRowsExpectAutoSet = strings.Join(stringx.Remove(adminMenuFieldNames, "`id`", "`create_time`", "`update_time`"), ",")
|
||
|
adminMenuRowsWithPlaceHolder = strings.Join(stringx.Remove(adminMenuFieldNames, "`id`", "`create_time`", "`update_time`"), "=?,") + "=?"
|
||
|
|
||
|
cacheQncAdminMenuIdPrefix = "cache:qnc:adminMenu:id:"
|
||
|
cacheQncAdminMenuNamePathPrefix = "cache:qnc:adminMenu:name:path:"
|
||
|
)
|
||
|
|
||
|
type (
|
||
|
adminMenuModel interface {
|
||
|
Insert(ctx context.Context, session sqlx.Session, data *AdminMenu) (sql.Result, error)
|
||
|
FindOne(ctx context.Context, id int64) (*AdminMenu, error)
|
||
|
FindOneByNamePath(ctx context.Context, name string, path string) (*AdminMenu, error)
|
||
|
Update(ctx context.Context, session sqlx.Session, data *AdminMenu) (sql.Result, error)
|
||
|
UpdateWithVersion(ctx context.Context, session sqlx.Session, data *AdminMenu) 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 *AdminMenu) 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) ([]*AdminMenu, error)
|
||
|
FindPageListByPage(ctx context.Context, rowBuilder squirrel.SelectBuilder, page, pageSize int64, orderBy string) ([]*AdminMenu, error)
|
||
|
FindPageListByPageWithTotal(ctx context.Context, rowBuilder squirrel.SelectBuilder, page, pageSize int64, orderBy string) ([]*AdminMenu, int64, error)
|
||
|
FindPageListByIdDESC(ctx context.Context, rowBuilder squirrel.SelectBuilder, preMinId, pageSize int64) ([]*AdminMenu, error)
|
||
|
FindPageListByIdASC(ctx context.Context, rowBuilder squirrel.SelectBuilder, preMaxId, pageSize int64) ([]*AdminMenu, error)
|
||
|
Delete(ctx context.Context, session sqlx.Session, id int64) error
|
||
|
}
|
||
|
|
||
|
defaultAdminMenuModel struct {
|
||
|
sqlc.CachedConn
|
||
|
table string
|
||
|
}
|
||
|
|
||
|
AdminMenu struct {
|
||
|
Id int64 `db:"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"` // 版本号
|
||
|
Pid int64 `db:"pid"` // 父菜单ID
|
||
|
Name string `db:"name"` // 路由名称
|
||
|
Path string `db:"path"` // 路由路径
|
||
|
Component string `db:"component"` // 组件路径
|
||
|
Redirect sql.NullString `db:"redirect"` // 重定向路径
|
||
|
Meta string `db:"meta"` // 路由元数据配置
|
||
|
Status int64 `db:"status"` // 状态: 0-禁用, 1-启用
|
||
|
Type int64 `db:"type"`
|
||
|
Sort int64 `db:"sort"` // 排序号
|
||
|
}
|
||
|
)
|
||
|
|
||
|
func newAdminMenuModel(conn sqlx.SqlConn, c cache.CacheConf) *defaultAdminMenuModel {
|
||
|
return &defaultAdminMenuModel{
|
||
|
CachedConn: sqlc.NewConn(conn, c),
|
||
|
table: "`admin_menu`",
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (m *defaultAdminMenuModel) Insert(ctx context.Context, session sqlx.Session, data *AdminMenu) (sql.Result, error) {
|
||
|
data.DelState = globalkey.DelStateNo
|
||
|
qncAdminMenuIdKey := fmt.Sprintf("%s%v", cacheQncAdminMenuIdPrefix, data.Id)
|
||
|
qncAdminMenuNamePathKey := fmt.Sprintf("%s%v:%v", cacheQncAdminMenuNamePathPrefix, data.Name, data.Path)
|
||
|
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, adminMenuRowsExpectAutoSet)
|
||
|
if session != nil {
|
||
|
return session.ExecCtx(ctx, query, data.DeleteTime, data.DelState, data.Version, data.Pid, data.Name, data.Path, data.Component, data.Redirect, data.Meta, data.Status, data.Type, data.Sort)
|
||
|
}
|
||
|
return conn.ExecCtx(ctx, query, data.DeleteTime, data.DelState, data.Version, data.Pid, data.Name, data.Path, data.Component, data.Redirect, data.Meta, data.Status, data.Type, data.Sort)
|
||
|
}, qncAdminMenuIdKey, qncAdminMenuNamePathKey)
|
||
|
}
|
||
|
|
||
|
func (m *defaultAdminMenuModel) FindOne(ctx context.Context, id int64) (*AdminMenu, error) {
|
||
|
qncAdminMenuIdKey := fmt.Sprintf("%s%v", cacheQncAdminMenuIdPrefix, id)
|
||
|
var resp AdminMenu
|
||
|
err := m.QueryRowCtx(ctx, &resp, qncAdminMenuIdKey, func(ctx context.Context, conn sqlx.SqlConn, v interface{}) error {
|
||
|
query := fmt.Sprintf("select %s from %s where `id` = ? and del_state = ? limit 1", adminMenuRows, 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 *defaultAdminMenuModel) FindOneByNamePath(ctx context.Context, name string, path string) (*AdminMenu, error) {
|
||
|
qncAdminMenuNamePathKey := fmt.Sprintf("%s%v:%v", cacheQncAdminMenuNamePathPrefix, name, path)
|
||
|
var resp AdminMenu
|
||
|
err := m.QueryRowIndexCtx(ctx, &resp, qncAdminMenuNamePathKey, m.formatPrimary, func(ctx context.Context, conn sqlx.SqlConn, v interface{}) (i interface{}, e error) {
|
||
|
query := fmt.Sprintf("select %s from %s where `name` = ? and `path` = ? and del_state = ? limit 1", adminMenuRows, m.table)
|
||
|
if err := conn.QueryRowCtx(ctx, &resp, query, name, path, 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 *defaultAdminMenuModel) Update(ctx context.Context, session sqlx.Session, newData *AdminMenu) (sql.Result, error) {
|
||
|
data, err := m.FindOne(ctx, newData.Id)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
qncAdminMenuIdKey := fmt.Sprintf("%s%v", cacheQncAdminMenuIdPrefix, data.Id)
|
||
|
qncAdminMenuNamePathKey := fmt.Sprintf("%s%v:%v", cacheQncAdminMenuNamePathPrefix, data.Name, data.Path)
|
||
|
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, adminMenuRowsWithPlaceHolder)
|
||
|
if session != nil {
|
||
|
return session.ExecCtx(ctx, query, newData.DeleteTime, newData.DelState, newData.Version, newData.Pid, newData.Name, newData.Path, newData.Component, newData.Redirect, newData.Meta, newData.Status, newData.Type, newData.Sort, newData.Id)
|
||
|
}
|
||
|
return conn.ExecCtx(ctx, query, newData.DeleteTime, newData.DelState, newData.Version, newData.Pid, newData.Name, newData.Path, newData.Component, newData.Redirect, newData.Meta, newData.Status, newData.Type, newData.Sort, newData.Id)
|
||
|
}, qncAdminMenuIdKey, qncAdminMenuNamePathKey)
|
||
|
}
|
||
|
|
||
|
func (m *defaultAdminMenuModel) UpdateWithVersion(ctx context.Context, session sqlx.Session, newData *AdminMenu) 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
|
||
|
}
|
||
|
qncAdminMenuIdKey := fmt.Sprintf("%s%v", cacheQncAdminMenuIdPrefix, data.Id)
|
||
|
qncAdminMenuNamePathKey := fmt.Sprintf("%s%v:%v", cacheQncAdminMenuNamePathPrefix, data.Name, data.Path)
|
||
|
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, adminMenuRowsWithPlaceHolder)
|
||
|
if session != nil {
|
||
|
return session.ExecCtx(ctx, query, newData.DeleteTime, newData.DelState, newData.Version, newData.Pid, newData.Name, newData.Path, newData.Component, newData.Redirect, newData.Meta, newData.Status, newData.Type, newData.Sort, newData.Id, oldVersion)
|
||
|
}
|
||
|
return conn.ExecCtx(ctx, query, newData.DeleteTime, newData.DelState, newData.Version, newData.Pid, newData.Name, newData.Path, newData.Component, newData.Redirect, newData.Meta, newData.Status, newData.Type, newData.Sort, newData.Id, oldVersion)
|
||
|
}, qncAdminMenuIdKey, qncAdminMenuNamePathKey)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
updateCount, err := sqlResult.RowsAffected()
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
if updateCount == 0 {
|
||
|
return ErrNoRowsUpdate
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *defaultAdminMenuModel) DeleteSoft(ctx context.Context, session sqlx.Session, data *AdminMenu) 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 "), "AdminMenuModel delete err : %+v", err)
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *defaultAdminMenuModel) 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 *defaultAdminMenuModel) 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 *defaultAdminMenuModel) FindAll(ctx context.Context, builder squirrel.SelectBuilder, orderBy string) ([]*AdminMenu, error) {
|
||
|
|
||
|
builder = builder.Columns(adminMenuRows)
|
||
|
|
||
|
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 []*AdminMenu
|
||
|
err = m.QueryRowsNoCacheCtx(ctx, &resp, query, values...)
|
||
|
switch err {
|
||
|
case nil:
|
||
|
return resp, nil
|
||
|
default:
|
||
|
return nil, err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (m *defaultAdminMenuModel) FindPageListByPage(ctx context.Context, builder squirrel.SelectBuilder, page, pageSize int64, orderBy string) ([]*AdminMenu, error) {
|
||
|
|
||
|
builder = builder.Columns(adminMenuRows)
|
||
|
|
||
|
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 []*AdminMenu
|
||
|
err = m.QueryRowsNoCacheCtx(ctx, &resp, query, values...)
|
||
|
switch err {
|
||
|
case nil:
|
||
|
return resp, nil
|
||
|
default:
|
||
|
return nil, err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (m *defaultAdminMenuModel) FindPageListByPageWithTotal(ctx context.Context, builder squirrel.SelectBuilder, page, pageSize int64, orderBy string) ([]*AdminMenu, int64, error) {
|
||
|
|
||
|
total, err := m.FindCount(ctx, builder, "id")
|
||
|
if err != nil {
|
||
|
return nil, 0, err
|
||
|
}
|
||
|
|
||
|
builder = builder.Columns(adminMenuRows)
|
||
|
|
||
|
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 []*AdminMenu
|
||
|
err = m.QueryRowsNoCacheCtx(ctx, &resp, query, values...)
|
||
|
switch err {
|
||
|
case nil:
|
||
|
return resp, total, nil
|
||
|
default:
|
||
|
return nil, total, err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (m *defaultAdminMenuModel) FindPageListByIdDESC(ctx context.Context, builder squirrel.SelectBuilder, preMinId, pageSize int64) ([]*AdminMenu, error) {
|
||
|
|
||
|
builder = builder.Columns(adminMenuRows)
|
||
|
|
||
|
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 []*AdminMenu
|
||
|
err = m.QueryRowsNoCacheCtx(ctx, &resp, query, values...)
|
||
|
switch err {
|
||
|
case nil:
|
||
|
return resp, nil
|
||
|
default:
|
||
|
return nil, err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (m *defaultAdminMenuModel) FindPageListByIdASC(ctx context.Context, builder squirrel.SelectBuilder, preMaxId, pageSize int64) ([]*AdminMenu, error) {
|
||
|
|
||
|
builder = builder.Columns(adminMenuRows)
|
||
|
|
||
|
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 []*AdminMenu
|
||
|
err = m.QueryRowsNoCacheCtx(ctx, &resp, query, values...)
|
||
|
switch err {
|
||
|
case nil:
|
||
|
return resp, nil
|
||
|
default:
|
||
|
return nil, err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (m *defaultAdminMenuModel) 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 *defaultAdminMenuModel) SelectBuilder() squirrel.SelectBuilder {
|
||
|
return squirrel.Select().From(m.table)
|
||
|
}
|
||
|
func (m *defaultAdminMenuModel) Delete(ctx context.Context, session sqlx.Session, id int64) error {
|
||
|
data, err := m.FindOne(ctx, id)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
qncAdminMenuIdKey := fmt.Sprintf("%s%v", cacheQncAdminMenuIdPrefix, id)
|
||
|
qncAdminMenuNamePathKey := fmt.Sprintf("%s%v:%v", cacheQncAdminMenuNamePathPrefix, data.Name, data.Path)
|
||
|
_, 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)
|
||
|
}, qncAdminMenuIdKey, qncAdminMenuNamePathKey)
|
||
|
return err
|
||
|
}
|
||
|
func (m *defaultAdminMenuModel) formatPrimary(primary interface{}) string {
|
||
|
return fmt.Sprintf("%s%v", cacheQncAdminMenuIdPrefix, primary)
|
||
|
}
|
||
|
func (m *defaultAdminMenuModel) 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", adminMenuRows, m.table)
|
||
|
return conn.QueryRowCtx(ctx, v, query, primary, globalkey.DelStateNo)
|
||
|
}
|
||
|
|
||
|
func (m *defaultAdminMenuModel) tableName() string {
|
||
|
return m.table
|
||
|
}
|