413 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
		
		
			
		
	
	
			413 lines
		
	
	
		
			17 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" | ||
|  | 	"tyc-server/common/globalkey" | ||
|  | ) | ||
|  | 
 | ||
|  | var ( | ||
|  | 	adminPromotionLinkStatsHistoryFieldNames          = builder.RawFieldNames(&AdminPromotionLinkStatsHistory{}) | ||
|  | 	adminPromotionLinkStatsHistoryRows                = strings.Join(adminPromotionLinkStatsHistoryFieldNames, ",") | ||
|  | 	adminPromotionLinkStatsHistoryRowsExpectAutoSet   = strings.Join(stringx.Remove(adminPromotionLinkStatsHistoryFieldNames, "`id`", "`create_time`", "`update_time`"), ",") | ||
|  | 	adminPromotionLinkStatsHistoryRowsWithPlaceHolder = strings.Join(stringx.Remove(adminPromotionLinkStatsHistoryFieldNames, "`id`", "`create_time`", "`update_time`"), "=?,") + "=?" | ||
|  | 
 | ||
|  | 	cacheTycAdminPromotionLinkStatsHistoryIdPrefix              = "cache:tyc:adminPromotionLinkStatsHistory:id:" | ||
|  | 	cacheTycAdminPromotionLinkStatsHistoryLinkIdStatsDatePrefix = "cache:tyc:adminPromotionLinkStatsHistory:linkId:statsDate:" | ||
|  | ) | ||
|  | 
 | ||
|  | type ( | ||
|  | 	adminPromotionLinkStatsHistoryModel interface { | ||
|  | 		Insert(ctx context.Context, session sqlx.Session, data *AdminPromotionLinkStatsHistory) (sql.Result, error) | ||
|  | 		FindOne(ctx context.Context, id int64) (*AdminPromotionLinkStatsHistory, error) | ||
|  | 		FindOneByLinkIdStatsDate(ctx context.Context, linkId int64, statsDate time.Time) (*AdminPromotionLinkStatsHistory, error) | ||
|  | 		Update(ctx context.Context, session sqlx.Session, data *AdminPromotionLinkStatsHistory) (sql.Result, error) | ||
|  | 		UpdateWithVersion(ctx context.Context, session sqlx.Session, data *AdminPromotionLinkStatsHistory) 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 *AdminPromotionLinkStatsHistory) 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) ([]*AdminPromotionLinkStatsHistory, error) | ||
|  | 		FindPageListByPage(ctx context.Context, rowBuilder squirrel.SelectBuilder, page, pageSize int64, orderBy string) ([]*AdminPromotionLinkStatsHistory, error) | ||
|  | 		FindPageListByPageWithTotal(ctx context.Context, rowBuilder squirrel.SelectBuilder, page, pageSize int64, orderBy string) ([]*AdminPromotionLinkStatsHistory, int64, error) | ||
|  | 		FindPageListByIdDESC(ctx context.Context, rowBuilder squirrel.SelectBuilder, preMinId, pageSize int64) ([]*AdminPromotionLinkStatsHistory, error) | ||
|  | 		FindPageListByIdASC(ctx context.Context, rowBuilder squirrel.SelectBuilder, preMaxId, pageSize int64) ([]*AdminPromotionLinkStatsHistory, error) | ||
|  | 		Delete(ctx context.Context, session sqlx.Session, id int64) error | ||
|  | 	} | ||
|  | 
 | ||
|  | 	defaultAdminPromotionLinkStatsHistoryModel struct { | ||
|  | 		sqlc.CachedConn | ||
|  | 		table string | ||
|  | 	} | ||
|  | 
 | ||
|  | 	AdminPromotionLinkStatsHistory 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"`         // 版本号 | ||
|  | 		LinkId        int64        `db:"link_id"`         // 推广链接ID | ||
|  | 		StatsDate     time.Time    `db:"stats_date"`      // 统计日期 | ||
|  | 		ClickCount    int64        `db:"click_count"`     // 点击数 | ||
|  | 		PayCount      int64        `db:"pay_count"`       // 付费次数 | ||
|  | 		PayAmount     float64      `db:"pay_amount"`      // 付费金额 | ||
|  | 		LastClickTime sql.NullTime `db:"last_click_time"` // 最后点击时间 | ||
|  | 		LastPayTime   sql.NullTime `db:"last_pay_time"`   // 最后付费时间 | ||
|  | 	} | ||
|  | ) | ||
|  | 
 | ||
|  | func newAdminPromotionLinkStatsHistoryModel(conn sqlx.SqlConn, c cache.CacheConf) *defaultAdminPromotionLinkStatsHistoryModel { | ||
|  | 	return &defaultAdminPromotionLinkStatsHistoryModel{ | ||
|  | 		CachedConn: sqlc.NewConn(conn, c), | ||
|  | 		table:      "`admin_promotion_link_stats_history`", | ||
|  | 	} | ||
|  | } | ||
|  | 
 | ||
|  | func (m *defaultAdminPromotionLinkStatsHistoryModel) Insert(ctx context.Context, session sqlx.Session, data *AdminPromotionLinkStatsHistory) (sql.Result, error) { | ||
|  | 	data.DelState = globalkey.DelStateNo | ||
|  | 	tycAdminPromotionLinkStatsHistoryIdKey := fmt.Sprintf("%s%v", cacheTycAdminPromotionLinkStatsHistoryIdPrefix, data.Id) | ||
|  | 	tycAdminPromotionLinkStatsHistoryLinkIdStatsDateKey := fmt.Sprintf("%s%v:%v", cacheTycAdminPromotionLinkStatsHistoryLinkIdStatsDatePrefix, data.LinkId, data.StatsDate) | ||
|  | 	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, adminPromotionLinkStatsHistoryRowsExpectAutoSet) | ||
|  | 		if session != nil { | ||
|  | 			return session.ExecCtx(ctx, query, data.DeleteTime, data.DelState, data.Version, data.LinkId, data.StatsDate, data.ClickCount, data.PayCount, data.PayAmount, data.LastClickTime, data.LastPayTime) | ||
|  | 		} | ||
|  | 		return conn.ExecCtx(ctx, query, data.DeleteTime, data.DelState, data.Version, data.LinkId, data.StatsDate, data.ClickCount, data.PayCount, data.PayAmount, data.LastClickTime, data.LastPayTime) | ||
|  | 	}, tycAdminPromotionLinkStatsHistoryIdKey, tycAdminPromotionLinkStatsHistoryLinkIdStatsDateKey) | ||
|  | } | ||
|  | 
 | ||
|  | func (m *defaultAdminPromotionLinkStatsHistoryModel) FindOne(ctx context.Context, id int64) (*AdminPromotionLinkStatsHistory, error) { | ||
|  | 	tycAdminPromotionLinkStatsHistoryIdKey := fmt.Sprintf("%s%v", cacheTycAdminPromotionLinkStatsHistoryIdPrefix, id) | ||
|  | 	var resp AdminPromotionLinkStatsHistory | ||
|  | 	err := m.QueryRowCtx(ctx, &resp, tycAdminPromotionLinkStatsHistoryIdKey, func(ctx context.Context, conn sqlx.SqlConn, v interface{}) error { | ||
|  | 		query := fmt.Sprintf("select %s from %s where `id` = ? and del_state = ? limit 1", adminPromotionLinkStatsHistoryRows, 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 *defaultAdminPromotionLinkStatsHistoryModel) FindOneByLinkIdStatsDate(ctx context.Context, linkId int64, statsDate time.Time) (*AdminPromotionLinkStatsHistory, error) { | ||
|  | 	tycAdminPromotionLinkStatsHistoryLinkIdStatsDateKey := fmt.Sprintf("%s%v:%v", cacheTycAdminPromotionLinkStatsHistoryLinkIdStatsDatePrefix, linkId, statsDate) | ||
|  | 	var resp AdminPromotionLinkStatsHistory | ||
|  | 	err := m.QueryRowIndexCtx(ctx, &resp, tycAdminPromotionLinkStatsHistoryLinkIdStatsDateKey, m.formatPrimary, func(ctx context.Context, conn sqlx.SqlConn, v interface{}) (i interface{}, e error) { | ||
|  | 		query := fmt.Sprintf("select %s from %s where `link_id` = ? and `stats_date` = ? and del_state = ? limit 1", adminPromotionLinkStatsHistoryRows, m.table) | ||
|  | 		if err := conn.QueryRowCtx(ctx, &resp, query, linkId, statsDate, 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 *defaultAdminPromotionLinkStatsHistoryModel) Update(ctx context.Context, session sqlx.Session, newData *AdminPromotionLinkStatsHistory) (sql.Result, error) { | ||
|  | 	data, err := m.FindOne(ctx, newData.Id) | ||
|  | 	if err != nil { | ||
|  | 		return nil, err | ||
|  | 	} | ||
|  | 	tycAdminPromotionLinkStatsHistoryIdKey := fmt.Sprintf("%s%v", cacheTycAdminPromotionLinkStatsHistoryIdPrefix, data.Id) | ||
|  | 	tycAdminPromotionLinkStatsHistoryLinkIdStatsDateKey := fmt.Sprintf("%s%v:%v", cacheTycAdminPromotionLinkStatsHistoryLinkIdStatsDatePrefix, data.LinkId, data.StatsDate) | ||
|  | 	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, adminPromotionLinkStatsHistoryRowsWithPlaceHolder) | ||
|  | 		if session != nil { | ||
|  | 			return session.ExecCtx(ctx, query, newData.DeleteTime, newData.DelState, newData.Version, newData.LinkId, newData.StatsDate, newData.ClickCount, newData.PayCount, newData.PayAmount, newData.LastClickTime, newData.LastPayTime, newData.Id) | ||
|  | 		} | ||
|  | 		return conn.ExecCtx(ctx, query, newData.DeleteTime, newData.DelState, newData.Version, newData.LinkId, newData.StatsDate, newData.ClickCount, newData.PayCount, newData.PayAmount, newData.LastClickTime, newData.LastPayTime, newData.Id) | ||
|  | 	}, tycAdminPromotionLinkStatsHistoryIdKey, tycAdminPromotionLinkStatsHistoryLinkIdStatsDateKey) | ||
|  | } | ||
|  | 
 | ||
|  | func (m *defaultAdminPromotionLinkStatsHistoryModel) UpdateWithVersion(ctx context.Context, session sqlx.Session, newData *AdminPromotionLinkStatsHistory) 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 | ||
|  | 	} | ||
|  | 	tycAdminPromotionLinkStatsHistoryIdKey := fmt.Sprintf("%s%v", cacheTycAdminPromotionLinkStatsHistoryIdPrefix, data.Id) | ||
|  | 	tycAdminPromotionLinkStatsHistoryLinkIdStatsDateKey := fmt.Sprintf("%s%v:%v", cacheTycAdminPromotionLinkStatsHistoryLinkIdStatsDatePrefix, data.LinkId, data.StatsDate) | ||
|  | 	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, adminPromotionLinkStatsHistoryRowsWithPlaceHolder) | ||
|  | 		if session != nil { | ||
|  | 			return session.ExecCtx(ctx, query, newData.DeleteTime, newData.DelState, newData.Version, newData.LinkId, newData.StatsDate, newData.ClickCount, newData.PayCount, newData.PayAmount, newData.LastClickTime, newData.LastPayTime, newData.Id, oldVersion) | ||
|  | 		} | ||
|  | 		return conn.ExecCtx(ctx, query, newData.DeleteTime, newData.DelState, newData.Version, newData.LinkId, newData.StatsDate, newData.ClickCount, newData.PayCount, newData.PayAmount, newData.LastClickTime, newData.LastPayTime, newData.Id, oldVersion) | ||
|  | 	}, tycAdminPromotionLinkStatsHistoryIdKey, tycAdminPromotionLinkStatsHistoryLinkIdStatsDateKey) | ||
|  | 	if err != nil { | ||
|  | 		return err | ||
|  | 	} | ||
|  | 	updateCount, err := sqlResult.RowsAffected() | ||
|  | 	if err != nil { | ||
|  | 		return err | ||
|  | 	} | ||
|  | 	if updateCount == 0 { | ||
|  | 		return ErrNoRowsUpdate | ||
|  | 	} | ||
|  | 
 | ||
|  | 	return nil | ||
|  | } | ||
|  | 
 | ||
|  | func (m *defaultAdminPromotionLinkStatsHistoryModel) DeleteSoft(ctx context.Context, session sqlx.Session, data *AdminPromotionLinkStatsHistory) 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 "), "AdminPromotionLinkStatsHistoryModel delete err : %+v", err) | ||
|  | 	} | ||
|  | 	return nil | ||
|  | } | ||
|  | 
 | ||
|  | func (m *defaultAdminPromotionLinkStatsHistoryModel) 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 *defaultAdminPromotionLinkStatsHistoryModel) 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 *defaultAdminPromotionLinkStatsHistoryModel) FindAll(ctx context.Context, builder squirrel.SelectBuilder, orderBy string) ([]*AdminPromotionLinkStatsHistory, error) { | ||
|  | 
 | ||
|  | 	builder = builder.Columns(adminPromotionLinkStatsHistoryRows) | ||
|  | 
 | ||
|  | 	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 []*AdminPromotionLinkStatsHistory | ||
|  | 	err = m.QueryRowsNoCacheCtx(ctx, &resp, query, values...) | ||
|  | 	switch err { | ||
|  | 	case nil: | ||
|  | 		return resp, nil | ||
|  | 	default: | ||
|  | 		return nil, err | ||
|  | 	} | ||
|  | } | ||
|  | 
 | ||
|  | func (m *defaultAdminPromotionLinkStatsHistoryModel) FindPageListByPage(ctx context.Context, builder squirrel.SelectBuilder, page, pageSize int64, orderBy string) ([]*AdminPromotionLinkStatsHistory, error) { | ||
|  | 
 | ||
|  | 	builder = builder.Columns(adminPromotionLinkStatsHistoryRows) | ||
|  | 
 | ||
|  | 	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 []*AdminPromotionLinkStatsHistory | ||
|  | 	err = m.QueryRowsNoCacheCtx(ctx, &resp, query, values...) | ||
|  | 	switch err { | ||
|  | 	case nil: | ||
|  | 		return resp, nil | ||
|  | 	default: | ||
|  | 		return nil, err | ||
|  | 	} | ||
|  | } | ||
|  | 
 | ||
|  | func (m *defaultAdminPromotionLinkStatsHistoryModel) FindPageListByPageWithTotal(ctx context.Context, builder squirrel.SelectBuilder, page, pageSize int64, orderBy string) ([]*AdminPromotionLinkStatsHistory, int64, error) { | ||
|  | 
 | ||
|  | 	total, err := m.FindCount(ctx, builder, "id") | ||
|  | 	if err != nil { | ||
|  | 		return nil, 0, err | ||
|  | 	} | ||
|  | 
 | ||
|  | 	builder = builder.Columns(adminPromotionLinkStatsHistoryRows) | ||
|  | 
 | ||
|  | 	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 []*AdminPromotionLinkStatsHistory | ||
|  | 	err = m.QueryRowsNoCacheCtx(ctx, &resp, query, values...) | ||
|  | 	switch err { | ||
|  | 	case nil: | ||
|  | 		return resp, total, nil | ||
|  | 	default: | ||
|  | 		return nil, total, err | ||
|  | 	} | ||
|  | } | ||
|  | 
 | ||
|  | func (m *defaultAdminPromotionLinkStatsHistoryModel) FindPageListByIdDESC(ctx context.Context, builder squirrel.SelectBuilder, preMinId, pageSize int64) ([]*AdminPromotionLinkStatsHistory, error) { | ||
|  | 
 | ||
|  | 	builder = builder.Columns(adminPromotionLinkStatsHistoryRows) | ||
|  | 
 | ||
|  | 	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 []*AdminPromotionLinkStatsHistory | ||
|  | 	err = m.QueryRowsNoCacheCtx(ctx, &resp, query, values...) | ||
|  | 	switch err { | ||
|  | 	case nil: | ||
|  | 		return resp, nil | ||
|  | 	default: | ||
|  | 		return nil, err | ||
|  | 	} | ||
|  | } | ||
|  | 
 | ||
|  | func (m *defaultAdminPromotionLinkStatsHistoryModel) FindPageListByIdASC(ctx context.Context, builder squirrel.SelectBuilder, preMaxId, pageSize int64) ([]*AdminPromotionLinkStatsHistory, error) { | ||
|  | 
 | ||
|  | 	builder = builder.Columns(adminPromotionLinkStatsHistoryRows) | ||
|  | 
 | ||
|  | 	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 []*AdminPromotionLinkStatsHistory | ||
|  | 	err = m.QueryRowsNoCacheCtx(ctx, &resp, query, values...) | ||
|  | 	switch err { | ||
|  | 	case nil: | ||
|  | 		return resp, nil | ||
|  | 	default: | ||
|  | 		return nil, err | ||
|  | 	} | ||
|  | } | ||
|  | 
 | ||
|  | func (m *defaultAdminPromotionLinkStatsHistoryModel) 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 *defaultAdminPromotionLinkStatsHistoryModel) SelectBuilder() squirrel.SelectBuilder { | ||
|  | 	return squirrel.Select().From(m.table) | ||
|  | } | ||
|  | func (m *defaultAdminPromotionLinkStatsHistoryModel) Delete(ctx context.Context, session sqlx.Session, id int64) error { | ||
|  | 	data, err := m.FindOne(ctx, id) | ||
|  | 	if err != nil { | ||
|  | 		return err | ||
|  | 	} | ||
|  | 
 | ||
|  | 	tycAdminPromotionLinkStatsHistoryIdKey := fmt.Sprintf("%s%v", cacheTycAdminPromotionLinkStatsHistoryIdPrefix, id) | ||
|  | 	tycAdminPromotionLinkStatsHistoryLinkIdStatsDateKey := fmt.Sprintf("%s%v:%v", cacheTycAdminPromotionLinkStatsHistoryLinkIdStatsDatePrefix, data.LinkId, data.StatsDate) | ||
|  | 	_, 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) | ||
|  | 	}, tycAdminPromotionLinkStatsHistoryIdKey, tycAdminPromotionLinkStatsHistoryLinkIdStatsDateKey) | ||
|  | 	return err | ||
|  | } | ||
|  | func (m *defaultAdminPromotionLinkStatsHistoryModel) formatPrimary(primary interface{}) string { | ||
|  | 	return fmt.Sprintf("%s%v", cacheTycAdminPromotionLinkStatsHistoryIdPrefix, primary) | ||
|  | } | ||
|  | func (m *defaultAdminPromotionLinkStatsHistoryModel) 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", adminPromotionLinkStatsHistoryRows, m.table) | ||
|  | 	return conn.QueryRowCtx(ctx, v, query, primary, globalkey.DelStateNo) | ||
|  | } | ||
|  | 
 | ||
|  | func (m *defaultAdminPromotionLinkStatsHistoryModel) tableName() string { | ||
|  | 	return m.table | ||
|  | } |