Commit 5da35f14 authored by duanzhihong's avatar duanzhihong

失能查詢

parent dc496c59
...@@ -127,7 +127,7 @@ public interface DisableService { ...@@ -127,7 +127,7 @@ public interface DisableService {
*/ */
Page<DisableInfoChangeVo> ListDisInfoChangeExamine(Page<DisableInfoChangeVo> page, Page<DisableInfoChangeVo> ListDisInfoChangeExamine(Page<DisableInfoChangeVo> page,
Long organId, Boolean isChildGroup, String districtProvincial, String districtCity, String districtArea, Long organId, Boolean isChildGroup, String districtProvincial, String districtCity, String districtArea,
String realName, String certiCode, String srvOrganName, Short applyStatus); String realName, String certiCode, String aplOrganName, Short applyStatus);
/** /**
* 失能人员信息变更-查看修改 * 失能人员信息变更-查看修改
......
...@@ -464,7 +464,7 @@ public class DisableServiceImpl implements DisableService { ...@@ -464,7 +464,7 @@ public class DisableServiceImpl implements DisableService {
@Override @Override
public Page<DisableInfoChangeVo> ListDisInfoChangeExamine(Page<DisableInfoChangeVo> page, public Page<DisableInfoChangeVo> ListDisInfoChangeExamine(Page<DisableInfoChangeVo> page,
Long organId, Boolean isChildGroup, String districtProvincial, String districtCity, String districtArea, Long organId, Boolean isChildGroup, String districtProvincial, String districtCity, String districtArea,
String realName, String certiCode, String srvOrganName, Short applyStatus) { String realName, String certiCode, String aplOrganName, Short applyStatus) {
List<Long> organIds = null; List<Long> organIds = null;
if (organId != null) { if (organId != null) {
if (isChildGroup == null) { if (isChildGroup == null) {
...@@ -474,7 +474,7 @@ public class DisableServiceImpl implements DisableService { ...@@ -474,7 +474,7 @@ public class DisableServiceImpl implements DisableService {
organIds = organService.getOrganIds(organId, isChildGroup); organIds = organService.getOrganIds(organId, isChildGroup);
} }
return chDisableInfoChangeMapper.getListDisableInfoChange(page, organIds, districtProvincial return chDisableInfoChangeMapper.getListDisableInfoChange(page, organIds, districtProvincial
, districtCity, districtArea, realName, certiCode, srvOrganName, applyStatus); , districtCity, districtArea, realName, certiCode, aplOrganName, applyStatus);
} }
@Override @Override
......
...@@ -47,8 +47,8 @@ ...@@ -47,8 +47,8 @@
<if test="certiCode != null and certiCode != ''"> <if test="certiCode != null and certiCode != ''">
and change.CERTIF_NUM = #{certiCode} and change.CERTIF_NUM = #{certiCode}
</if> </if>
<if test="srvOrganName != null and srvOrganName != ''"> <if test="aplOrganName != null and aplOrganName != ''">
and srvOrgan.SRV_ORGAN_NAME like CONCAT(CONCAT('%',#{srvOrganName}) ,'%') and srvOrgan.SRV_ORGAN_NAME like CONCAT(CONCAT('%',#{aplOrganName}) ,'%')
</if> </if>
<if test="applyStatus != null"> <if test="applyStatus != null">
and change.APPLY_STATUS = #{applyStatus} and change.APPLY_STATUS = #{applyStatus}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment