删除达梦引用包
This commit is contained in:
parent
860a8336b5
commit
0cc7c4bafb
|
@ -3,21 +3,15 @@ package com.hzya.frame.report.reportManage.service.impl;
|
|||
import com.alibaba.fastjson.JSONObject;
|
||||
import com.github.pagehelper.PageHelper;
|
||||
import com.github.pagehelper.PageInfo;
|
||||
import com.hzya.frame.basedao.service.impl.BaseService;
|
||||
import com.hzya.frame.report.reportManage.dao.IReportManageDao;
|
||||
import com.hzya.frame.report.reportManage.entity.JimuReportEntity;
|
||||
import com.hzya.frame.report.reportManage.entity.ReportManageEntity;
|
||||
import com.hzya.frame.report.reportManage.dao.IReportManageDao;
|
||||
import com.hzya.frame.report.reportManage.service.IReportManageService;
|
||||
import com.hzya.frame.sysnew.user.entity.SysUserEntity;
|
||||
import com.hzya.frame.sysnew.userCompany.entity.SysUserCompanyEntity;
|
||||
import com.hzya.frame.sysnew.userRoles.entity.SysUserRolesEntity;
|
||||
import com.hzya.frame.util.AESUtil;
|
||||
import com.hzya.frame.web.entity.BaseResult;
|
||||
import com.hzya.frame.web.entity.JsonResultEntity;
|
||||
import dm.jdbc.d.U;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import javax.annotation.Resource;
|
||||
import com.hzya.frame.basedao.service.impl.BaseService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
@ -111,14 +105,10 @@ public class ReportManageServiceImpl extends BaseService<ReportManageEntity, Str
|
|||
}
|
||||
|
||||
|
||||
|
||||
private boolean checkIsUse(ReportManageEntity entity) {
|
||||
ReportManageEntity checkUse = new ReportManageEntity();
|
||||
checkUse.setReportId(entity.getReportId());
|
||||
if (reportManageDao.getCount(checkUse) > 0) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
return reportManageDao.getCount(checkUse) <= 0;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -271,6 +261,7 @@ public class ReportManageServiceImpl extends BaseService<ReportManageEntity, Str
|
|||
return BaseResult.getSuccessMessageEntity("获取报表成功", entity);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
|
|
Loading…
Reference in New Issue