|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
package com.glxp.api.service.thrsys.impl;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
|
import com.github.pagehelper.PageHelper;
|
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
|
|
import com.glxp.api.dao.auth.AuthLicenseDao;
|
|
|
|
|
import com.glxp.api.dao.thrsys.ThrSystemDao;
|
|
|
|
|
import com.glxp.api.entity.auth.AuthLicense;
|
|
|
|
@ -19,7 +19,7 @@ import java.util.List;
|
|
|
|
|
@Slf4j
|
|
|
|
|
@Service
|
|
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
|
|
public class ThrSystemServiceImpl implements ThrSystemService {
|
|
|
|
|
public class ThrSystemServiceImpl extends ServiceImpl<ThrSystemDao,ThrSystemEntity> implements ThrSystemService {
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
private ThrSystemDao thrSystemDao;
|
|
|
|
@ -53,7 +53,7 @@ public class ThrSystemServiceImpl implements ThrSystemService {
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
//查询本系统的授权码
|
|
|
|
|