Browse Source

20221110_sun联合惩戒修正

15143018065 2 years ago
parent
commit
c430acd421

+ 2 - 0
ruoyi-modules/mz-business-lhcj/src/main/java/com/ruoyi/business/service/impl/ZwywCyryLhcjmdServiceImpl.java

@@ -7,6 +7,7 @@ import com.ruoyi.business.domain.ZwywCyrySxxx;
 import com.ruoyi.business.mapper.ZwywCyryLhcjmdMapper;
 import com.ruoyi.business.mapper.ZwywCyryLhcjmdMapper;
 import com.ruoyi.business.service.IZwywCyryLhcjmdService;
 import com.ruoyi.business.service.IZwywCyryLhcjmdService;
 import com.ruoyi.common.core.utils.StringUtils;
 import com.ruoyi.common.core.utils.StringUtils;
+import com.ruoyi.common.security.utils.EncryptionUtils;
 import com.ruoyi.common.security.utils.SecurityUtils;
 import com.ruoyi.common.security.utils.SecurityUtils;
 import com.ruoyi.system.api.enums.JointStatus;
 import com.ruoyi.system.api.enums.JointStatus;
 import com.ruoyi.system.mapper.SysDeptJlMapper;
 import com.ruoyi.system.mapper.SysDeptJlMapper;
@@ -64,6 +65,7 @@ public class ZwywCyryLhcjmdServiceImpl implements IZwywCyryLhcjmdService
     @Override
     @Override
     public List<ZwywCyryLhcjmd> selectZwywCyryLhcjmdList(ZwywCyryLhcjmd zwywCyryLhcjmd)
     public List<ZwywCyryLhcjmd> selectZwywCyryLhcjmdList(ZwywCyryLhcjmd zwywCyryLhcjmd)
     {
     {
+        EncryptionUtils.encryption(zwywCyryLhcjmd);
         LambdaQueryWrapper<ZwywCyryLhcjmd> lqw = new LambdaQueryWrapper<ZwywCyryLhcjmd>()
         LambdaQueryWrapper<ZwywCyryLhcjmd> lqw = new LambdaQueryWrapper<ZwywCyryLhcjmd>()
                 .in(CollectionUtils.isNotEmpty(zwywCyryLhcjmd.getLzztList()), ZwywCyryLhcjmd::getLzzt,
                 .in(CollectionUtils.isNotEmpty(zwywCyryLhcjmd.getLzztList()), ZwywCyryLhcjmd::getLzzt,
                         zwywCyryLhcjmd.getLzztList())
                         zwywCyryLhcjmd.getLzztList())

+ 2 - 0
ruoyi-modules/mz-business-lhcj/src/main/java/com/ruoyi/business/service/impl/ZwywCyryZdgzServiceImpl.java

@@ -10,6 +10,7 @@ import com.ruoyi.business.mapper.ZwywCyryZdgzMapper;
 import com.ruoyi.business.service.IZwywCyryZdgzService;
 import com.ruoyi.business.service.IZwywCyryZdgzService;
 import com.ruoyi.common.core.exception.ServiceException;
 import com.ruoyi.common.core.exception.ServiceException;
 import com.ruoyi.common.core.utils.DateUtils;
 import com.ruoyi.common.core.utils.DateUtils;
+import com.ruoyi.common.security.utils.EncryptionUtils;
 import com.ruoyi.common.security.utils.SecurityUtils;
 import com.ruoyi.common.security.utils.SecurityUtils;
 import com.ruoyi.system.api.enums.ProcessStatus;
 import com.ruoyi.system.api.enums.ProcessStatus;
 import com.ruoyi.system.api.enums.PunishmentsStatus;
 import com.ruoyi.system.api.enums.PunishmentsStatus;
@@ -92,6 +93,7 @@ public class ZwywCyryZdgzServiceImpl implements IZwywCyryZdgzService
     @Override
     @Override
     public List<ZwywCyryZdgz> selectZwywCyryZdgzList(ZwywCyryZdgz zwywCyryZdgz)
     public List<ZwywCyryZdgz> selectZwywCyryZdgzList(ZwywCyryZdgz zwywCyryZdgz)
     {
     {
+        EncryptionUtils.encryption(zwywCyryZdgz);
         LambdaQueryWrapper<ZwywCyryZdgz> lqw = new LambdaQueryWrapper<ZwywCyryZdgz>()
         LambdaQueryWrapper<ZwywCyryZdgz> lqw = new LambdaQueryWrapper<ZwywCyryZdgz>()
                 .like(ObjectUtils.isNotEmpty(zwywCyryZdgz.getXm()), ZwywCyryZdgz::getXm, zwywCyryZdgz.getXm())
                 .like(ObjectUtils.isNotEmpty(zwywCyryZdgz.getXm()), ZwywCyryZdgz::getXm, zwywCyryZdgz.getXm())
                 .like(ObjectUtils.isNotEmpty(zwywCyryZdgz.getZjhm()), ZwywCyryZdgz::getZjhm, zwywCyryZdgz.getZjhm())
                 .like(ObjectUtils.isNotEmpty(zwywCyryZdgz.getZjhm()), ZwywCyryZdgz::getZjhm, zwywCyryZdgz.getZjhm())

+ 2 - 1
ruoyi-modules/mz-business-lhcj/src/main/java/com/ruoyi/business/service/impl/ZwywYljgSxxxServiceImpl.java

@@ -2,7 +2,6 @@ package com.ruoyi.business.service.impl;
 
 
 import com.alibaba.fastjson2.TypeReference;
 import com.alibaba.fastjson2.TypeReference;
 import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
 import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
-import com.ruoyi.business.domain.ZwywCyrySxxx;
 import com.ruoyi.business.domain.ZwywYljgSxxx;
 import com.ruoyi.business.domain.ZwywYljgSxxx;
 import com.ruoyi.business.mapper.ZwywLhcjNrrdMapper;
 import com.ruoyi.business.mapper.ZwywLhcjNrrdMapper;
 import com.ruoyi.business.mapper.ZwywYljgSxxxMapper;
 import com.ruoyi.business.mapper.ZwywYljgSxxxMapper;
@@ -11,6 +10,7 @@ import com.ruoyi.common.core.constant.SecurityConstants;
 import com.ruoyi.common.core.exception.ServiceException;
 import com.ruoyi.common.core.exception.ServiceException;
 import com.ruoyi.common.core.utils.uuid.IdUtils;
 import com.ruoyi.common.core.utils.uuid.IdUtils;
 import com.ruoyi.common.core.web.domain.AjaxResult;
 import com.ruoyi.common.core.web.domain.AjaxResult;
+import com.ruoyi.common.security.utils.EncryptionUtils;
 import com.ruoyi.common.security.utils.SecurityUtils;
 import com.ruoyi.common.security.utils.SecurityUtils;
 import com.ruoyi.system.api.RemoteDictDataService;
 import com.ruoyi.system.api.RemoteDictDataService;
 import com.ruoyi.system.api.domain.SysDictData;
 import com.ruoyi.system.api.domain.SysDictData;
@@ -90,6 +90,7 @@ public class ZwywYljgSxxxServiceImpl implements IZwywYljgSxxxService
     @Override
     @Override
     public List<ZwywYljgSxxx> selectZwywYljgSxxxByNrrdList(ZwywYljgSxxx zwywYljgSxxx)
     public List<ZwywYljgSxxx> selectZwywYljgSxxxByNrrdList(ZwywYljgSxxx zwywYljgSxxx)
     {
     {
+        EncryptionUtils.encryption(zwywYljgSxxx);
         LambdaQueryWrapper<ZwywYljgSxxx> lqw = new LambdaQueryWrapper<ZwywYljgSxxx>()
         LambdaQueryWrapper<ZwywYljgSxxx> lqw = new LambdaQueryWrapper<ZwywYljgSxxx>()
                 .and(l -> l.in(ZwywYljgSxxx::getLzzt, zwywYljgSxxx.getLzztList()).or().in(ZwywYljgSxxx::getInstanceId
                 .and(l -> l.in(ZwywYljgSxxx::getLzzt, zwywYljgSxxx.getLzztList()).or().in(ZwywYljgSxxx::getInstanceId
                         , zwywYljgSxxx.getInstanceIds()))
                         , zwywYljgSxxx.getInstanceIds()))