手机隐患清单排查

pull/4/head
wangpeng 2024-02-01 16:46:11 +08:00
parent 77e8562313
commit cd97e0916a
4 changed files with 85 additions and 107 deletions

View File

@ -157,7 +157,7 @@ public class AppCheckRecordController extends BaseController {
@RequestMapping(value = "/finish")
@ResponseBody
@Transactional
@LogAnno(menuType= "手机",menuServer= "隐患排查",instructionsOperate = "清单检查情况",instructionsType = "完成检查")
@LogAnno(menuType= "手机",menuServer= "风险排查",instructionsOperate = "清单检查情况",instructionsType = "完成检查")
public Object finish() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
String errInfo = "success";

View File

@ -48,7 +48,7 @@ public class AppCustomCheckRecordController extends BaseController {
@Autowired
private CustomHiddenService customHiddenService;
@Autowired
private CheckUserService checkuserService;
private CustomCheckUserService customCheckUserService;
@Autowired
private CorpInfoService corpinfoService;
@Autowired
@ -168,6 +168,7 @@ public class AppCustomCheckRecordController extends BaseController {
* @param
* @throws Exception
*/
// /app/checkrecord/finish
@RequestMapping(value = "/finish")
@ResponseBody
@Transactional
@ -222,7 +223,7 @@ public class AppCustomCheckRecordController extends BaseController {
}
pd.put("FINISHED", "1"); // 是否完成
customCheckRecordService.edit(pd);
checkuserService.delete(pd);
customCheckUserService.delete(pd);
if (pd.get("OTHER") != null && !pd.get("OTHER").equals("")) {
List<JSONObject> list1 = (List<JSONObject>) JSON.parse(pd.get("OTHER").toString());
for (JSONObject json : list1) {
@ -235,7 +236,7 @@ public class AppCustomCheckRecordController extends BaseController {
other.put("USER_ID", json.get("USER_ID"));
other.put("DEPARTMENT_NAME", json.get("DEPARTMENT_NAME"));
other.put("USER_NAME", json.get("USER_NAME"));
checkuserService.save(other);
customCheckUserService.save(other);
}
}
}
@ -394,7 +395,7 @@ public class AppCustomCheckRecordController extends BaseController {
PageData pd = new PageData();
pd = this.getPageData();
pd = customCheckRecordService.findById(pd); // 根据ID读取
PageData users = checkuserService.getCheckUser(pd);
PageData users = customCheckUserService.getCheckUser(pd);
List<PageData> varList = customCheckRecordItemService.listAll(pd);
pd.put("USERS", users.get("USERS"));
PageData pd2 = new PageData();
@ -427,7 +428,7 @@ public class AppCustomCheckRecordController extends BaseController {
pd = this.getPageData();
String IDENTIFICATION_ID = pd.getString("IDENTIFICATION_ID");
pd = customCheckRecordService.findById(pd); // 根据ID读取
PageData users = checkuserService.getCheckUser(pd);
PageData users = customCheckUserService.getCheckUser(pd);
pd.put("IDENTIFICATION_ID", IDENTIFICATION_ID);
List<PageData> varList = customCheckRecordItemService.listAll(pd);
PageData idData = new PageData();

View File

@ -42,7 +42,7 @@ import java.util.stream.Collectors;
public class CustomHiddenServiceImpl implements CustomHiddenService {
@Resource
private CustomHiddenMapper customHiddenServiceMapper;
private CustomHiddenMapper customHiddenMapper;
@Resource
private DictionariesService dictionariesService;
@Resource
@ -65,7 +65,7 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public void save(PageData pd)throws Exception{
customHiddenServiceMapper.save(pd);
customHiddenMapper.save(pd);
}
/**
@ -73,7 +73,7 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public void delete(PageData pd)throws Exception{
customHiddenServiceMapper.delete(pd);
customHiddenMapper.delete(pd);
}
/**
@ -81,7 +81,7 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public void edit(PageData pd)throws Exception{
customHiddenServiceMapper.edit(pd);
customHiddenMapper.edit(pd);
}
/**
@ -89,20 +89,20 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public void editInfo(PageData pd)throws Exception{
customHiddenServiceMapper.editInfo(pd);
customHiddenMapper.editInfo(pd);
}
public void editISCONFIRM(PageData pd)throws Exception{
customHiddenServiceMapper.editISCONFIRM(pd);
customHiddenMapper.editISCONFIRM(pd);
}
public void editHIDDENLEVEL(PageData pd)throws Exception{
customHiddenServiceMapper.editHIDDENLEVEL(pd);
customHiddenMapper.editHIDDENLEVEL(pd);
}
/**
* @throws Exception
*/
public void submit(PageData pd)throws Exception{
customHiddenServiceMapper.submit(pd);
customHiddenMapper.submit(pd);
}
/**
@ -110,7 +110,7 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public void changeState(PageData pd)throws Exception{
customHiddenServiceMapper.changeState(pd);
customHiddenMapper.changeState(pd);
}
/**
@ -118,7 +118,7 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public void editDeadline(PageData pd)throws Exception{
customHiddenServiceMapper.editDeadline(pd);
customHiddenMapper.editDeadline(pd);
}
/**
@ -126,7 +126,7 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public void check(PageData pd)throws Exception{
customHiddenServiceMapper.check(pd);
customHiddenMapper.check(pd);
}
/**
@ -134,7 +134,7 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public void review(PageData pd)throws Exception{
customHiddenServiceMapper.review(pd);
customHiddenMapper.review(pd);
}
/**
@ -142,7 +142,7 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public void rectify(PageData pd)throws Exception{
customHiddenServiceMapper.rectify(pd);
customHiddenMapper.rectify(pd);
}
/**
@ -150,7 +150,7 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public List<PageData> list(Page page)throws Exception{
return customHiddenServiceMapper.datalistPage(page);
return customHiddenMapper.datalistPage(page);
}
/**()
@ -158,7 +158,7 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public List<PageData> listAll(PageData pd)throws Exception{
return customHiddenServiceMapper.listAll(pd);
return customHiddenMapper.listAll(pd);
}
/**
@ -166,17 +166,17 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public List<PageData> getYestoday(PageData pd)throws Exception{
return customHiddenServiceMapper.getYestoday(pd);
return customHiddenMapper.getYestoday(pd);
}
/**(,使)
* @param pd
* @throws Exception
*/
public List<PageData> listAllToPrint(PageData pd)throws Exception{
return customHiddenServiceMapper.listAllToPrint(pd);
return customHiddenMapper.listAllToPrint(pd);
}
public List<PageData> listHiddenAll(PageData pd)throws Exception{
return customHiddenServiceMapper.listHiddenAll(pd);
return customHiddenMapper.listHiddenAll(pd);
}
/**
@ -185,7 +185,7 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public List<PageData> getHiddenByRecord(PageData pd)throws Exception{
return customHiddenServiceMapper.getHiddenByRecord(pd);
return customHiddenMapper.getHiddenByRecord(pd);
}
/**id
@ -193,7 +193,7 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public PageData findById(PageData pd)throws Exception{
return customHiddenServiceMapper.findById(pd);
return customHiddenMapper.findById(pd);
}
/**
@ -201,28 +201,28 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public void deleteAll(String[] ArrayDATA_IDS)throws Exception{
customHiddenServiceMapper.deleteAll(ArrayDATA_IDS);
customHiddenMapper.deleteAll(ArrayDATA_IDS);
}
/**
* @throws Exception
*/
public void updateAll(PageData hiddens)throws Exception{
customHiddenServiceMapper.updateAll(hiddens);
customHiddenMapper.updateAll(hiddens);
}
/**
* @throws Exception
*/
public List<PageData> hiddenStatisticsByDay(PageData pd)throws Exception{
return customHiddenServiceMapper.hiddenStatisticsByDay(pd);
return customHiddenMapper.hiddenStatisticsByDay(pd);
}
/**
* @throws Exception
*/
public List<PageData> hiddenStatisticsAll(PageData pd)throws Exception{
return customHiddenServiceMapper.hiddenStatisticsAll(pd);
return customHiddenMapper.hiddenStatisticsAll(pd);
}
/**
*app ID
@ -231,7 +231,7 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public List<PageData> getCountByCreatorId(PageData pd) throws Exception{
return customHiddenServiceMapper.getCountByCreatorId(pd);
return customHiddenMapper.getCountByCreatorId(pd);
}
/**
* app ID
@ -240,7 +240,7 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public List<PageData> getCountByRectifiCationorId(PageData pd) throws Exception{
return customHiddenServiceMapper.getCountByRectifiCationorId(pd);
return customHiddenMapper.getCountByRectifiCationorId(pd);
}
/**
@ -250,7 +250,7 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public List<PageData> getCountByCheckorId(PageData pd) throws Exception{
return customHiddenServiceMapper.getCountByCheckorId(pd);
return customHiddenMapper.getCountByCheckorId(pd);
}
/**
@ -259,7 +259,7 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public List<PageData> getBICount(PageData pd) throws Exception{
return customHiddenServiceMapper.getBICount(pd);
return customHiddenMapper.getBICount(pd);
}
/**
@ -269,7 +269,7 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
*/
@Override
public List<PageData> getOtherHidden(PageData pd) throws Exception {
return customHiddenServiceMapper.getOtherHidden(pd);
return customHiddenMapper.getOtherHidden(pd);
}
/**
@ -277,18 +277,18 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
*/
@Override
public void submitList(PageData pd) throws Exception {
customHiddenServiceMapper.submitList(pd);
customHiddenMapper.submitList(pd);
}
public List<PageData> getCountByHiddenType(PageData pd) throws Exception{
return customHiddenServiceMapper.getCountByHiddenType(pd);
return customHiddenMapper.getCountByHiddenType(pd);
}
/**
* @throws Exception
*/
public List<PageData> getHiddenNum(PageData pd)throws Exception{
return customHiddenServiceMapper.getHiddenNum(pd);
return customHiddenMapper.getHiddenNum(pd);
}
@ -297,7 +297,7 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public List<PageData> listAllRoll(PageData pd){
return customHiddenServiceMapper.listAllRoll(pd);
return customHiddenMapper.listAllRoll(pd);
}
/**
@ -305,46 +305,46 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public List<PageData> getDeptExamine(PageData pd)throws Exception{
return customHiddenServiceMapper.getDeptExamine(pd);
return customHiddenMapper.getDeptExamine(pd);
}
public List<PageData> getUserExamine(PageData pd)throws Exception{
return customHiddenServiceMapper.getUserExamine(pd);
return customHiddenMapper.getUserExamine(pd);
}
public List<PageData> listAllForDiagnosis(PageData pd)throws Exception{
return customHiddenServiceMapper.listAllForDiagnosis(pd);
return customHiddenMapper.listAllForDiagnosis(pd);
}
public PageData getUserIndexData(PageData pd)throws Exception{
return customHiddenServiceMapper.getUserIndexData(pd);
return customHiddenMapper.getUserIndexData(pd);
}
public PageData getDeptIndexData(PageData pd)throws Exception{
return customHiddenServiceMapper.getDeptIndexData(pd);
return customHiddenMapper.getDeptIndexData(pd);
}
public PageData getSuperviseDeptIndexData(PageData pd)throws Exception{
return customHiddenServiceMapper.getSuperviseDeptIndexData(pd);
return customHiddenMapper.getSuperviseDeptIndexData(pd);
}
@Override
public List<PageData> findByKey(PageData condition) throws Exception {
return customHiddenServiceMapper.findByKey(condition);
return customHiddenMapper.findByKey(condition);
}
@Override
public List<PageData> findByQue(PageData condition) throws Exception {
return customHiddenServiceMapper.findByQue(condition);
return customHiddenMapper.findByQue(condition);
}
@Override
public List<PageData> findByYin(PageData condition) throws Exception {
return customHiddenServiceMapper.findByYin(condition);
return customHiddenMapper.findByYin(condition);
}
@Override
public List<PageData> findByTs(PageData condition) throws Exception {
return customHiddenServiceMapper.findByTs(condition);
return customHiddenMapper.findByTs(condition);
}
/**
@ -355,12 +355,12 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
*/
@Override
public List<PageData> findByInspectionId(PageData pd) throws Exception {
return customHiddenServiceMapper.findByInspectionId(pd);
return customHiddenMapper.findByInspectionId(pd);
}
@Override
public List<PageData> listAllInspection(PageData pd) throws Exception {
List<PageData> hiddenList = customHiddenServiceMapper.listAllInspection(pd);
List<PageData> hiddenList = customHiddenMapper.listAllInspection(pd);
for (PageData hd : hiddenList) {
PageData pd2 = new PageData();
pd2.put("FOREIGN_KEY",hd.getString("HIDDEN_ID"));
@ -374,17 +374,17 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
@Override
public void editStateInspection(PageData pd) throws Exception {
customHiddenServiceMapper.editStateInspection(pd);
customHiddenMapper.editStateInspection(pd);
}
@Override
public void deleteByKey(PageData pd) throws Exception {
customHiddenServiceMapper.deleteByKey(pd);
customHiddenMapper.deleteByKey(pd);
}
@Override
public void deleteArray(PageData pd) throws Exception {
customHiddenServiceMapper.deleteArray(pd);
customHiddenMapper.deleteArray(pd);
}
/**
@ -394,7 +394,7 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public List<PageData> getCountByConfirmId(PageData pd) throws Exception{
return customHiddenServiceMapper.getCountByConfirmId(pd);
return customHiddenMapper.getCountByConfirmId(pd);
}
/**
@ -404,7 +404,7 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public List<PageData> getCountSpecialByhId(PageData pd) throws Exception{
return customHiddenServiceMapper.getCountSpecialByhId(pd);
return customHiddenMapper.getCountSpecialByhId(pd);
}
/**
@ -412,17 +412,17 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public void editInformation(PageData pd)throws Exception{
customHiddenServiceMapper.editInformation(pd);
customHiddenMapper.editInformation(pd);
}
@Override
public void editstate(PageData hiddenExa) {
customHiddenServiceMapper.editstate(hiddenExa);
customHiddenMapper.editstate(hiddenExa);
}
@Override
public List<PageData> listOtherNotAccept(PageData pd) throws Exception {
return customHiddenServiceMapper.listOtherNotAccept(pd);
return customHiddenMapper.listOtherNotAccept(pd);
}
/**
@ -432,7 +432,7 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public List<PageData> listGwj(Page page) throws Exception{
return customHiddenServiceMapper.listGwjdatalistPage(page);
return customHiddenMapper.listGwjdatalistPage(page);
}
/**
@ -442,14 +442,14 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public List<PageData> listIgnore(Page page) throws Exception{
return customHiddenServiceMapper.listIgnoredatalistPage(page);
return customHiddenMapper.listIgnoredatalistPage(page);
}
public void saveForEmis(String hiddenId,String resXML)throws Exception{
PageData pd = new PageData();
pd.put("HIDDEN_ID",hiddenId);
pd.put("resXML",resXML);
customHiddenServiceMapper.saveForEmis(pd);
customHiddenMapper.saveForEmis(pd);
}
/**
* @param
@ -458,7 +458,7 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
public void deleteForEmis(String hiddenId)throws Exception{
PageData pd = new PageData();
pd.put("HIDDEN_ID",hiddenId);
customHiddenServiceMapper.deleteForEmis(pd);
customHiddenMapper.deleteForEmis(pd);
}
public String goEmis (PageData pd) throws Exception{
String result = "";
@ -569,22 +569,22 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public void confirmHidden (PageData pd) throws Exception{
customHiddenServiceMapper.confirmHidden(pd);
customHiddenMapper.confirmHidden(pd);
}
@Override
public List<PageData> listForSafetyEnvironmental(Page page) throws Exception {
return customHiddenServiceMapper.hiddenInspectionlistPage(page);
return customHiddenMapper.hiddenInspectionlistPage(page);
}
@Override
public List<PageData> listOtherNotAssign(PageData pd) throws Exception {
return customHiddenServiceMapper.listOtherNotAssign(pd);
return customHiddenMapper.listOtherNotAssign(pd);
}
@Override
public void assign(PageData pd) throws Exception {
customHiddenServiceMapper.assign(pd);
customHiddenMapper.assign(pd);
}
/**
@ -592,12 +592,12 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public void finalcheck(PageData pd)throws Exception{
customHiddenServiceMapper.finalcheck(pd);
customHiddenMapper.finalcheck(pd);
}
@Override
public List<PageData> listOtherNotAccept4pc(PageData pd) throws Exception {
return customHiddenServiceMapper.listOtherNotAccept4pc(pd);
return customHiddenMapper.listOtherNotAccept4pc(pd);
}
/**
@ -605,7 +605,7 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public List<PageData> getListForTianzhang(Page page)throws Exception{
return customHiddenServiceMapper.getListForTianzhangdatalistPage(page);
return customHiddenMapper.getListForTianzhangdatalistPage(page);
}
/**
@ -614,14 +614,14 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public void confirmUpdate(PageData pd) throws Exception{
customHiddenServiceMapper.confirmUpdate(pd);
customHiddenMapper.confirmUpdate(pd);
}
public void updateStateByHidden(String type,String hiddenId) throws Exception{
PageData pd = new PageData();
pd.put("STATE",type);
pd.put("HIDDEN_ID",hiddenId);
customHiddenServiceMapper.updateStateByHidden(pd);
customHiddenMapper.updateStateByHidden(pd);
}
/**
@ -650,7 +650,7 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public List<PageData> majorlist(Page page) throws Exception{
return customHiddenServiceMapper.majordatalistPage(page);
return customHiddenMapper.majordatalistPage(page);
}
/**
@ -660,7 +660,7 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public List<PageData> verifylist(Page page) throws Exception{
return customHiddenServiceMapper.verifydatalistPage(page);
return customHiddenMapper.verifydatalistPage(page);
}
/**
@ -670,14 +670,14 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public List<PageData> majormanage(Page page) throws Exception{
return customHiddenServiceMapper.majormanagelistPage(page);
return customHiddenMapper.majormanagelistPage(page);
}
/**id
* @param pd
* @throws Exception
*/
public PageData findByEmisId(PageData pd)throws Exception{
return customHiddenServiceMapper.findByEmisId(pd);
return customHiddenMapper.findByEmisId(pd);
}
/**
@ -685,7 +685,7 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
* @throws Exception
*/
public List<PageData> getListForemis(Page page)throws Exception{
return customHiddenServiceMapper.getListForemisdatalistPage(page);
return customHiddenMapper.getListForemisdatalistPage(page);
}
@Override
@ -724,7 +724,7 @@ public class CustomHiddenServiceImpl implements CustomHiddenService {
condition.put("IS_SELF", lock.getString("IS_SELF"));
condition.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID());
}
List<PageData> varOList = customHiddenServiceMapper.listAll(condition);
List<PageData> varOList = customHiddenMapper.listAll(condition);
Set<String> imgIds = varOList.stream().map(n -> n.getString("HIDDEN_ID")).collect(Collectors.toSet());
// 查询整改方案

View File

@ -68,6 +68,7 @@
<!-- 字段用于新增 -->
<sql id="Field2">
SOURCE,
CHECK_CATEGORY,
CHECK_CATEGORY_NAME,
CHECK_ITEM,
CHECK_ITEM_NAME,
@ -118,6 +119,7 @@
<!-- 字段值 -->
<sql id="FieldValue">
#{SOURCE},
#{CHECK_CATEGORY},
#{CHECK_CATEGORY_NAME},
#{CHECK_ITEM},
#{CHECK_ITEM_NAME},
@ -226,12 +228,6 @@
<if test="HIDDEN_CATEGORY != null and HIDDEN_CATEGORY != ''">
HIDDEN_CATEGORY = #{HIDDEN_CATEGORY},
</if>
<if test="RISK_DESCR != null and RISK_DESCR != ''">
RISK_DESCR = #{RISK_DESCR},
</if>
<if test="RISK_POSITION != null and RISK_POSITION != ''">
RISK_POSITION = #{RISK_POSITION},
</if>
<if test="LEVEL != null and LEVEL != ''">
LEVEL = #{LEVEL},
</if>
@ -507,11 +503,7 @@
<if test="pd.KEYWORDS != null and pd.KEYWORDS != ''"><!-- 关键词检索 -->
and
(
<!-- f.RISK_UNIT LIKE CONCAT(CONCAT('%', #{pd.KEYWORDS}),'%')
or
f.RISK_POSITION LIKE CONCAT(CONCAT('%', #{pd.KEYWORDS}),'%')
or
f.CHECK_CONTENT LIKE CONCAT(CONCAT('%', #{pd.KEYWORDS}),'%')
<!-- f.CHECK_CONTENT LIKE CONCAT(CONCAT('%', #{pd.KEYWORDS}),'%')
or-->
f.HIDDENDESCR LIKE CONCAT(CONCAT('%', #{pd.KEYWORDS}),'%')
)
@ -826,10 +818,6 @@
<if test="KEYWORDS != null and KEYWORDS != ''"><!-- 关键词检索 -->
and
(
f.RISK_UNIT LIKE CONCAT(CONCAT('%', #{KEYWORDS}),'%')
or
f.RISK_POSITION LIKE CONCAT(CONCAT('%', #{KEYWORDS}),'%')
or
f.CHECK_CONTENT LIKE CONCAT(CONCAT('%', #{KEYWORDS}),'%')
or
f.HIDDENDESCR LIKE CONCAT(CONCAT('%', #{KEYWORDS}),'%')
@ -945,10 +933,6 @@
<if test="KEYWORDS != null and KEYWORDS != ''"><!-- 关键词检索 -->
and
(
f.RISK_UNIT LIKE CONCAT(CONCAT('%', #{KEYWORDS}),'%')
or
f.RISK_POSITION LIKE CONCAT(CONCAT('%', #{KEYWORDS}),'%')
or
f.CHECK_CONTENT LIKE CONCAT(CONCAT('%', #{KEYWORDS}),'%')
or
f.HIDDENDESCR LIKE CONCAT(CONCAT('%', #{KEYWORDS}),'%')
@ -1662,16 +1646,13 @@
</select>
<select id="anaysis" resultType="com.zcloud.entity.PageData">
select count(1) as num, a.STATE from bus_hidden a where a.ISDELETE = '0'
select count(1) as num, a.STATE from bus_hiddendangercheckstandard_hidden a where a.ISDELETE = '0'
<if test="ids != null and ids.size != 0">
and a.CUSTOM_ID in
<foreach item="item" index="index" collection="ids" open="(" separator="," close=")">
'${item}'
</foreach>
</if>
<if test="RISK_UNIT != null and RISK_UNIT != ''">
and a.RISK_UNIT = #{RISK_UNIT}
</if>
group by a.STATE
</select>
@ -1763,10 +1744,6 @@
<if test="KEYWORDS != null and KEYWORDS != ''"><!-- 关键词检索 -->
and
(
f.RISK_UNIT LIKE CONCAT(CONCAT('%', #{KEYWORDS}),'%')
or
f.RISK_POSITION LIKE CONCAT(CONCAT('%', #{KEYWORDS}),'%')
or
f.CHECK_CONTENT LIKE CONCAT(CONCAT('%', #{KEYWORDS}),'%')
or
f.HIDDENDESCR LIKE CONCAT(CONCAT('%', #{KEYWORDS}),'%')
@ -3079,14 +3056,14 @@
<insert id="saveForEmis" parameterType="pd">
INSERT INTO bus_hidden_emis(
HIDDEN_ID,SOURCE,RISK_UNIT,CHECK_ITEM,RISK_DESCR,RISK_POSITION,LEVEL,CHECK_CONTENT,HIDDENDESCR,HIDDENPART,CREATOR,
HIDDEN_ID,,CHECK_CATEGORY_NAM,CHECK_CATEGORY_NAME,CHECK_ITEM,CHECK_ITEM_NAME,LEVEL,CHECK_CONTENT,HIDDENDESCR,HIDDENPART,CREATOR,
CREATTIME,RECTIFYDESCR,RECTIFICATIONTYPE,RECTIFICATIONDEPT,RECTIFICATIONOR,RECTIFICATIONDEADLINE,
RECTIFICATIONTIME,HIDDENLEVEL,STATE,CHECKDEPT,CHECKOR,CHECKTIME,CHECKDESCR,ISQUALIFIED,ISDELETE,CORPINFO_ID,
HIDDENFINDDEPT,CHECKRECORD_ID,RECORDITEM_ID,CUSTOM_ITEM_ID,REJECTREASON,REVIEWOR,REVIEWTIME,REVIEWDEPT,HAVESCHEME,
LONGITUDE,LATITUDE,CUSTOM_ID,HIDDENTYPE,ISCONFIRM,CONFIRM_USER,CONFIRM_TIME,DISCOVERYTIME,INVESTMENT_FUNDS,
HIDDENTYPE2,POSITIONDESC,ISRELEVANT,EMIS_RES
) SELECT
HIDDEN_ID,SOURCE,RISK_UNIT,CHECK_ITEM,RISK_DESCR,RISK_POSITION,LEVEL,CHECK_CONTENT,HIDDENDESCR,HIDDENPART,CREATOR,CREATTIME,RECTIFYDESCR,
HIDDEN_ID,SOURCE,CHECK_CATEGORY,CHECK_CATEGORY_NAME,CHECK_ITEM,CHECK_ITEM_NAME,LEVEL,CHECK_CONTENT,HIDDENDESCR,HIDDENPART,CREATOR,CREATTIME,RECTIFYDESCR,
RECTIFICATIONTYPE,RECTIFICATIONDEPT,RECTIFICATIONOR,RECTIFICATIONDEADLINE,RECTIFICATIONTIME,HIDDENLEVEL,STATE,CHECKDEPT,CHECKOR,CHECKTIME,
CHECKDESCR,ISQUALIFIED,ISDELETE,CORPINFO_ID,HIDDENFINDDEPT,CHECKRECORD_ID,RECORDITEM_ID,CUSTOM_ITEM_ID,REJECTREASON,REVIEWOR,REVIEWTIME,REVIEWDEPT,
HAVESCHEME,LONGITUDE,LATITUDE,CUSTOM_ID,HIDDENTYPE,ISCONFIRM,CONFIRM_USER,CONFIRM_TIME,DISCOVERYTIME,INVESTMENT_FUNDS,HIDDENTYPE2,