query.go 812 B

123456789101112131415161718192021222324
  1. package sandbox
  2. import (
  3. "hongze/hongze_yb/global"
  4. )
  5. // GetBySandboxId 根据沙盘ID查询详情
  6. func GetBySandboxId(id uint32) (item *Sandbox, err error) {
  7. err = global.DEFAULT_MYSQL.Where("sandbox_id = ? and is_delete=0 ", id).Order("sandbox_id desc").First(&item).Error
  8. return
  9. }
  10. // GetPageListByWhere 分页获取活动列表
  11. func GetPageListByWhere(condition string, pars []interface{}, startSize, pageSize int) (total int64, list []*Sandbox, err error) {
  12. // 获取查询总数量
  13. err = global.DEFAULT_MYSQL.Model(Sandbox{}).Where(condition, pars...).Count(&total).Error
  14. if err != nil {
  15. return
  16. }
  17. // 获取列表数据
  18. err = global.DEFAULT_MYSQL.Model(Sandbox{}).Where(condition, pars...).Order("modify_time desc,sandbox_id desc").Offset(startSize).Limit(pageSize).Find(&list).Error
  19. return
  20. }