|
|
|
@ -2,6 +2,7 @@ package com.glxp.api.service.thrsys.impl;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
|
|
import com.github.pagehelper.PageHelper;
|
|
|
|
|
import com.glxp.api.dao.auth.AuthLicenseDao;
|
|
|
|
|
import com.glxp.api.dao.thrsys.ThrSystemDao;
|
|
|
|
|
import com.glxp.api.entity.auth.AuthLicense;
|
|
|
|
@ -53,7 +54,7 @@ public class ThrSystemServiceImpl extends ServiceImpl<ThrSystemDao,ThrSystemEnti
|
|
|
|
|
|
|
|
|
|
if (filterBasicThirdSysRequest.getPage() != null) {
|
|
|
|
|
int offset = (filterBasicThirdSysRequest.getPage() - 1) * filterBasicThirdSysRequest.getLimit();
|
|
|
|
|
// PageHelper.offsetPage(offset, filterBasicThirdSysRequest.getLimit());
|
|
|
|
|
PageHelper.offsetPage(offset, filterBasicThirdSysRequest.getLimit());
|
|
|
|
|
}
|
|
|
|
|
List<ThrSystemEntity> data = thrSystemDao.filterBasicThiSys(filterBasicThirdSysRequest);
|
|
|
|
|
//查询本系统的授权码
|
|
|
|
|