463 lines
19 KiB
Go
463 lines
19 KiB
Go
// Code generated by goctl. DO NOT EDIT!
|
||
|
||
package model
|
||
|
||
import (
|
||
"context"
|
||
"database/sql"
|
||
"fmt"
|
||
"strings"
|
||
|
||
"reflect"
|
||
"time"
|
||
|
||
"sim-server/common/globalkey"
|
||
|
||
"github.com/Masterminds/squirrel"
|
||
"github.com/google/uuid"
|
||
"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"
|
||
)
|
||
|
||
var (
|
||
yunyinSignPayOrderFieldNames = builder.RawFieldNames(&YunyinSignPayOrder{})
|
||
yunyinSignPayOrderRows = strings.Join(yunyinSignPayOrderFieldNames, ",")
|
||
yunyinSignPayOrderRowsExpectAutoSet = strings.Join(stringx.Remove(yunyinSignPayOrderFieldNames, "`create_time`", "`update_time`"), ",")
|
||
yunyinSignPayOrderRowsWithPlaceHolder = strings.Join(stringx.Remove(yunyinSignPayOrderFieldNames, "`id`", "`create_time`", "`update_time`"), "=?,") + "=?"
|
||
|
||
cacheSimYunyinSignPayOrderIdPrefix = "cache:sim:yunyinSignPayOrder:id:"
|
||
cacheSimYunyinSignPayOrderOrderIdPrefix = "cache:sim:yunyinSignPayOrder:orderId:"
|
||
cacheSimYunyinSignPayOrderTaskIdPrefix = "cache:sim:yunyinSignPayOrder:taskId:"
|
||
)
|
||
|
||
type (
|
||
yunyinSignPayOrderModel interface {
|
||
Insert(ctx context.Context, session sqlx.Session, data *YunyinSignPayOrder) (sql.Result, error)
|
||
FindOne(ctx context.Context, id string) (*YunyinSignPayOrder, error)
|
||
FindOneByOrderId(ctx context.Context, orderId string) (*YunyinSignPayOrder, error)
|
||
FindOneByTaskId(ctx context.Context, taskId string) (*YunyinSignPayOrder, error)
|
||
Update(ctx context.Context, session sqlx.Session, data *YunyinSignPayOrder) (sql.Result, error)
|
||
UpdateWithVersion(ctx context.Context, session sqlx.Session, data *YunyinSignPayOrder) 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 *YunyinSignPayOrder) 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) ([]*YunyinSignPayOrder, error)
|
||
FindPageListByPage(ctx context.Context, rowBuilder squirrel.SelectBuilder, page, pageSize int64, orderBy string) ([]*YunyinSignPayOrder, error)
|
||
FindPageListByPageWithTotal(ctx context.Context, rowBuilder squirrel.SelectBuilder, page, pageSize int64, orderBy string) ([]*YunyinSignPayOrder, int64, error)
|
||
FindPageListByIdDESC(ctx context.Context, rowBuilder squirrel.SelectBuilder, preMinId, pageSize int64) ([]*YunyinSignPayOrder, error)
|
||
FindPageListByIdASC(ctx context.Context, rowBuilder squirrel.SelectBuilder, preMaxId, pageSize int64) ([]*YunyinSignPayOrder, error)
|
||
Delete(ctx context.Context, session sqlx.Session, id string) error
|
||
}
|
||
|
||
defaultYunyinSignPayOrderModel struct {
|
||
sqlc.CachedConn
|
||
table string
|
||
}
|
||
|
||
YunyinSignPayOrder struct {
|
||
Id string `db:"id"` // 主键ID(UUID)
|
||
OrderId string `db:"order_id"` // 订单ID(关联order表)
|
||
UserId string `db:"user_id"` // 用户ID(用于查询该用户是否有未完成的签署)
|
||
TaskId string `db:"task_id"` // 任务ID/流程ID(flowId)
|
||
ParticipantId string `db:"participant_id"` // 参与者ID(签署方2的participantId)
|
||
Amount float64 `db:"amount"` // 支付金额
|
||
PayType int64 `db:"pay_type"` // 支付类型:0=微信支付,1=支付宝支付
|
||
SignStatus int64 `db:"sign_status"` // 签署状态:0=待签署,1=已签署,2=已取消
|
||
PayStatus int64 `db:"pay_status"` // 支付状态:0=待支付,1=已支付,2=已退款
|
||
SourceOrderCode string `db:"source_order_code"` // 源订单号(我们平台的订单号,用于关联)
|
||
UserMobile sql.NullString `db:"user_mobile"` // 用户手机号(冗余字段,方便查询)
|
||
UserName sql.NullString `db:"user_name"` // 用户姓名(冗余字段,方便查询)
|
||
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 newYunyinSignPayOrderModel(conn sqlx.SqlConn, c cache.CacheConf) *defaultYunyinSignPayOrderModel {
|
||
return &defaultYunyinSignPayOrderModel{
|
||
CachedConn: sqlc.NewConn(conn, c),
|
||
table: "`yunyin_sign_pay_order`",
|
||
}
|
||
}
|
||
|
||
func (m *defaultYunyinSignPayOrderModel) Insert(ctx context.Context, session sqlx.Session, data *YunyinSignPayOrder) (sql.Result, error) {
|
||
data.DelState = globalkey.DelStateNo
|
||
m.insertUUID(data)
|
||
simYunyinSignPayOrderIdKey := fmt.Sprintf("%s%v", cacheSimYunyinSignPayOrderIdPrefix, data.Id)
|
||
simYunyinSignPayOrderOrderIdKey := fmt.Sprintf("%s%v", cacheSimYunyinSignPayOrderOrderIdPrefix, data.OrderId)
|
||
simYunyinSignPayOrderTaskIdKey := fmt.Sprintf("%s%v", cacheSimYunyinSignPayOrderTaskIdPrefix, data.TaskId)
|
||
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, yunyinSignPayOrderRowsExpectAutoSet)
|
||
if session != nil {
|
||
return session.ExecCtx(ctx, query, data.Id, data.OrderId, data.UserId, data.TaskId, data.ParticipantId, data.Amount, data.PayType, data.SignStatus, data.PayStatus, data.SourceOrderCode, data.UserMobile, data.UserName, data.DeleteTime, data.DelState, data.Version)
|
||
}
|
||
return conn.ExecCtx(ctx, query, data.Id, data.OrderId, data.UserId, data.TaskId, data.ParticipantId, data.Amount, data.PayType, data.SignStatus, data.PayStatus, data.SourceOrderCode, data.UserMobile, data.UserName, data.DeleteTime, data.DelState, data.Version)
|
||
}, simYunyinSignPayOrderIdKey, simYunyinSignPayOrderOrderIdKey, simYunyinSignPayOrderTaskIdKey)
|
||
}
|
||
func (m *defaultYunyinSignPayOrderModel) insertUUID(data *YunyinSignPayOrder) {
|
||
t := reflect.TypeOf(data).Elem()
|
||
v := reflect.ValueOf(data).Elem()
|
||
for i := 0; i < t.NumField(); i++ {
|
||
sf := t.Field(i)
|
||
if sf.Tag.Get("db") == "id" {
|
||
f := v.Field(i)
|
||
if f.IsValid() && f.CanSet() && f.Kind() == reflect.String {
|
||
if f.String() == "" {
|
||
f.SetString(uuid.NewString())
|
||
}
|
||
}
|
||
break
|
||
}
|
||
}
|
||
}
|
||
|
||
func (m *defaultYunyinSignPayOrderModel) FindOne(ctx context.Context, id string) (*YunyinSignPayOrder, error) {
|
||
simYunyinSignPayOrderIdKey := fmt.Sprintf("%s%v", cacheSimYunyinSignPayOrderIdPrefix, id)
|
||
var resp YunyinSignPayOrder
|
||
err := m.QueryRowCtx(ctx, &resp, simYunyinSignPayOrderIdKey, func(ctx context.Context, conn sqlx.SqlConn, v interface{}) error {
|
||
query := fmt.Sprintf("select %s from %s where `id` = ? and del_state = ? limit 1", yunyinSignPayOrderRows, 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 *defaultYunyinSignPayOrderModel) FindOneByOrderId(ctx context.Context, orderId string) (*YunyinSignPayOrder, error) {
|
||
simYunyinSignPayOrderOrderIdKey := fmt.Sprintf("%s%v", cacheSimYunyinSignPayOrderOrderIdPrefix, orderId)
|
||
var resp YunyinSignPayOrder
|
||
err := m.QueryRowIndexCtx(ctx, &resp, simYunyinSignPayOrderOrderIdKey, m.formatPrimary, func(ctx context.Context, conn sqlx.SqlConn, v interface{}) (i interface{}, e error) {
|
||
query := fmt.Sprintf("select %s from %s where `order_id` = ? and del_state = ? limit 1", yunyinSignPayOrderRows, m.table)
|
||
if err := conn.QueryRowCtx(ctx, &resp, query, orderId, 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 *defaultYunyinSignPayOrderModel) FindOneByTaskId(ctx context.Context, taskId string) (*YunyinSignPayOrder, error) {
|
||
simYunyinSignPayOrderTaskIdKey := fmt.Sprintf("%s%v", cacheSimYunyinSignPayOrderTaskIdPrefix, taskId)
|
||
var resp YunyinSignPayOrder
|
||
err := m.QueryRowIndexCtx(ctx, &resp, simYunyinSignPayOrderTaskIdKey, m.formatPrimary, func(ctx context.Context, conn sqlx.SqlConn, v interface{}) (i interface{}, e error) {
|
||
query := fmt.Sprintf("select %s from %s where `task_id` = ? and del_state = ? limit 1", yunyinSignPayOrderRows, m.table)
|
||
if err := conn.QueryRowCtx(ctx, &resp, query, taskId, 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 *defaultYunyinSignPayOrderModel) Update(ctx context.Context, session sqlx.Session, newData *YunyinSignPayOrder) (sql.Result, error) {
|
||
data, err := m.FindOne(ctx, newData.Id)
|
||
if err != nil {
|
||
return nil, err
|
||
}
|
||
simYunyinSignPayOrderIdKey := fmt.Sprintf("%s%v", cacheSimYunyinSignPayOrderIdPrefix, data.Id)
|
||
simYunyinSignPayOrderOrderIdKey := fmt.Sprintf("%s%v", cacheSimYunyinSignPayOrderOrderIdPrefix, data.OrderId)
|
||
simYunyinSignPayOrderTaskIdKey := fmt.Sprintf("%s%v", cacheSimYunyinSignPayOrderTaskIdPrefix, data.TaskId)
|
||
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, yunyinSignPayOrderRowsWithPlaceHolder)
|
||
if session != nil {
|
||
return session.ExecCtx(ctx, query, newData.OrderId, newData.UserId, newData.TaskId, newData.ParticipantId, newData.Amount, newData.PayType, newData.SignStatus, newData.PayStatus, newData.SourceOrderCode, newData.UserMobile, newData.UserName, newData.DeleteTime, newData.DelState, newData.Version, newData.Id)
|
||
}
|
||
return conn.ExecCtx(ctx, query, newData.OrderId, newData.UserId, newData.TaskId, newData.ParticipantId, newData.Amount, newData.PayType, newData.SignStatus, newData.PayStatus, newData.SourceOrderCode, newData.UserMobile, newData.UserName, newData.DeleteTime, newData.DelState, newData.Version, newData.Id)
|
||
}, simYunyinSignPayOrderIdKey, simYunyinSignPayOrderOrderIdKey, simYunyinSignPayOrderTaskIdKey)
|
||
}
|
||
|
||
func (m *defaultYunyinSignPayOrderModel) UpdateWithVersion(ctx context.Context, session sqlx.Session, newData *YunyinSignPayOrder) 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
|
||
}
|
||
simYunyinSignPayOrderIdKey := fmt.Sprintf("%s%v", cacheSimYunyinSignPayOrderIdPrefix, data.Id)
|
||
simYunyinSignPayOrderOrderIdKey := fmt.Sprintf("%s%v", cacheSimYunyinSignPayOrderOrderIdPrefix, data.OrderId)
|
||
simYunyinSignPayOrderTaskIdKey := fmt.Sprintf("%s%v", cacheSimYunyinSignPayOrderTaskIdPrefix, data.TaskId)
|
||
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, yunyinSignPayOrderRowsWithPlaceHolder)
|
||
if session != nil {
|
||
return session.ExecCtx(ctx, query, newData.OrderId, newData.UserId, newData.TaskId, newData.ParticipantId, newData.Amount, newData.PayType, newData.SignStatus, newData.PayStatus, newData.SourceOrderCode, newData.UserMobile, newData.UserName, newData.DeleteTime, newData.DelState, newData.Version, newData.Id, oldVersion)
|
||
}
|
||
return conn.ExecCtx(ctx, query, newData.OrderId, newData.UserId, newData.TaskId, newData.ParticipantId, newData.Amount, newData.PayType, newData.SignStatus, newData.PayStatus, newData.SourceOrderCode, newData.UserMobile, newData.UserName, newData.DeleteTime, newData.DelState, newData.Version, newData.Id, oldVersion)
|
||
}, simYunyinSignPayOrderIdKey, simYunyinSignPayOrderOrderIdKey, simYunyinSignPayOrderTaskIdKey)
|
||
if err != nil {
|
||
return err
|
||
}
|
||
updateCount, err := sqlResult.RowsAffected()
|
||
if err != nil {
|
||
return err
|
||
}
|
||
if updateCount == 0 {
|
||
return ErrNoRowsUpdate
|
||
}
|
||
|
||
return nil
|
||
}
|
||
|
||
func (m *defaultYunyinSignPayOrderModel) DeleteSoft(ctx context.Context, session sqlx.Session, data *YunyinSignPayOrder) 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 "), "YunyinSignPayOrderModel delete err : %+v", err)
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (m *defaultYunyinSignPayOrderModel) 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 *defaultYunyinSignPayOrderModel) 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 *defaultYunyinSignPayOrderModel) FindAll(ctx context.Context, builder squirrel.SelectBuilder, orderBy string) ([]*YunyinSignPayOrder, error) {
|
||
|
||
builder = builder.Columns(yunyinSignPayOrderRows)
|
||
|
||
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 []*YunyinSignPayOrder
|
||
err = m.QueryRowsNoCacheCtx(ctx, &resp, query, values...)
|
||
switch err {
|
||
case nil:
|
||
return resp, nil
|
||
default:
|
||
return nil, err
|
||
}
|
||
}
|
||
|
||
func (m *defaultYunyinSignPayOrderModel) FindPageListByPage(ctx context.Context, builder squirrel.SelectBuilder, page, pageSize int64, orderBy string) ([]*YunyinSignPayOrder, error) {
|
||
|
||
builder = builder.Columns(yunyinSignPayOrderRows)
|
||
|
||
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 []*YunyinSignPayOrder
|
||
err = m.QueryRowsNoCacheCtx(ctx, &resp, query, values...)
|
||
switch err {
|
||
case nil:
|
||
return resp, nil
|
||
default:
|
||
return nil, err
|
||
}
|
||
}
|
||
|
||
func (m *defaultYunyinSignPayOrderModel) FindPageListByPageWithTotal(ctx context.Context, builder squirrel.SelectBuilder, page, pageSize int64, orderBy string) ([]*YunyinSignPayOrder, int64, error) {
|
||
|
||
total, err := m.FindCount(ctx, builder, "id")
|
||
if err != nil {
|
||
return nil, 0, err
|
||
}
|
||
|
||
builder = builder.Columns(yunyinSignPayOrderRows)
|
||
|
||
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 []*YunyinSignPayOrder
|
||
err = m.QueryRowsNoCacheCtx(ctx, &resp, query, values...)
|
||
switch err {
|
||
case nil:
|
||
return resp, total, nil
|
||
default:
|
||
return nil, total, err
|
||
}
|
||
}
|
||
|
||
func (m *defaultYunyinSignPayOrderModel) FindPageListByIdDESC(ctx context.Context, builder squirrel.SelectBuilder, preMinId, pageSize int64) ([]*YunyinSignPayOrder, error) {
|
||
|
||
builder = builder.Columns(yunyinSignPayOrderRows)
|
||
|
||
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 []*YunyinSignPayOrder
|
||
err = m.QueryRowsNoCacheCtx(ctx, &resp, query, values...)
|
||
switch err {
|
||
case nil:
|
||
return resp, nil
|
||
default:
|
||
return nil, err
|
||
}
|
||
}
|
||
|
||
func (m *defaultYunyinSignPayOrderModel) FindPageListByIdASC(ctx context.Context, builder squirrel.SelectBuilder, preMaxId, pageSize int64) ([]*YunyinSignPayOrder, error) {
|
||
|
||
builder = builder.Columns(yunyinSignPayOrderRows)
|
||
|
||
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 []*YunyinSignPayOrder
|
||
err = m.QueryRowsNoCacheCtx(ctx, &resp, query, values...)
|
||
switch err {
|
||
case nil:
|
||
return resp, nil
|
||
default:
|
||
return nil, err
|
||
}
|
||
}
|
||
|
||
func (m *defaultYunyinSignPayOrderModel) 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 *defaultYunyinSignPayOrderModel) SelectBuilder() squirrel.SelectBuilder {
|
||
return squirrel.Select().From(m.table)
|
||
}
|
||
func (m *defaultYunyinSignPayOrderModel) Delete(ctx context.Context, session sqlx.Session, id string) error {
|
||
data, err := m.FindOne(ctx, id)
|
||
if err != nil {
|
||
return err
|
||
}
|
||
|
||
simYunyinSignPayOrderIdKey := fmt.Sprintf("%s%v", cacheSimYunyinSignPayOrderIdPrefix, id)
|
||
simYunyinSignPayOrderOrderIdKey := fmt.Sprintf("%s%v", cacheSimYunyinSignPayOrderOrderIdPrefix, data.OrderId)
|
||
simYunyinSignPayOrderTaskIdKey := fmt.Sprintf("%s%v", cacheSimYunyinSignPayOrderTaskIdPrefix, data.TaskId)
|
||
_, 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)
|
||
}, simYunyinSignPayOrderIdKey, simYunyinSignPayOrderOrderIdKey, simYunyinSignPayOrderTaskIdKey)
|
||
return err
|
||
}
|
||
func (m *defaultYunyinSignPayOrderModel) formatPrimary(primary interface{}) string {
|
||
return fmt.Sprintf("%s%v", cacheSimYunyinSignPayOrderIdPrefix, primary)
|
||
}
|
||
func (m *defaultYunyinSignPayOrderModel) 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", yunyinSignPayOrderRows, m.table)
|
||
return conn.QueryRowCtx(ctx, v, query, primary, globalkey.DelStateNo)
|
||
}
|
||
|
||
func (m *defaultYunyinSignPayOrderModel) tableName() string {
|
||
return m.table
|
||
}
|