Commit 5da35f14 authored by duanzhihong's avatar duanzhihong

失能查詢

parent dc496c59
......@@ -127,7 +127,7 @@ public interface DisableService {
*/
Page<DisableInfoChangeVo> ListDisInfoChangeExamine(Page<DisableInfoChangeVo> page,
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 {
@Override
public Page<DisableInfoChangeVo> ListDisInfoChangeExamine(Page<DisableInfoChangeVo> page,
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;
if (organId != null) {
if (isChildGroup == null) {
......@@ -474,7 +474,7 @@ public class DisableServiceImpl implements DisableService {
organIds = organService.getOrganIds(organId, isChildGroup);
}
return chDisableInfoChangeMapper.getListDisableInfoChange(page, organIds, districtProvincial
, districtCity, districtArea, realName, certiCode, srvOrganName, applyStatus);
, districtCity, districtArea, realName, certiCode, aplOrganName, applyStatus);
}
@Override
......
......@@ -47,8 +47,8 @@
<if test="certiCode != null and certiCode != ''">
and change.CERTIF_NUM = #{certiCode}
</if>
<if test="srvOrganName != null and srvOrganName != ''">
and srvOrgan.SRV_ORGAN_NAME like CONCAT(CONCAT('%',#{srvOrganName}) ,'%')
<if test="aplOrganName != null and aplOrganName != ''">
and srvOrgan.SRV_ORGAN_NAME like CONCAT(CONCAT('%',#{aplOrganName}) ,'%')
</if>
<if test="applyStatus != null">
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