bug修复
This commit is contained in:
parent
66fa1e70ca
commit
5061e089bf
|
|
@ -301,4 +301,6 @@ public interface AdmissionRequestMapper {
|
|||
String getIdCardByPhone(@Param("phone") String phone);
|
||||
|
||||
List<AdmissionRequest> listPersonnelInfo(AdmissionRequest bean);
|
||||
|
||||
int delProExamineConfiguration(Long[] addressId);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -716,6 +716,7 @@ public class AdmissionRequestServiceImpl implements AdmissionRequestService {
|
|||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@Transactional
|
||||
public AjaxResult addExamine(FlowSaveXml bean) {
|
||||
int result = 0;
|
||||
AjaxResult ajaxResult = AjaxResult.success();
|
||||
|
|
@ -860,8 +861,10 @@ public class AdmissionRequestServiceImpl implements AdmissionRequestService {
|
|||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@Transactional
|
||||
public int delFlowConfiguration(Long[] addressId) {
|
||||
return arMapper.delFlowConfiguration(addressId);
|
||||
arMapper.delProExamineConfiguration(addressId);
|
||||
return arMapper.delFlowConfiguration(addressId);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -101,6 +101,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
SET is_active = '0'
|
||||
WHERE uuid = #{uuid}
|
||||
</delete>
|
||||
<delete id="delProExamineConfiguration">
|
||||
DELETE FROM lk_pro_examine_configuration
|
||||
WHERE examine_id IN
|
||||
<foreach item="addressId" collection="array" open="(" separator="," close=")">
|
||||
#{addressId}
|
||||
</foreach>
|
||||
</delete>
|
||||
|
||||
<select id="admissionRequestList" resultType="com.bonus.project.domain.AdmissionRequest">
|
||||
SELECT lkc.id AS id,
|
||||
|
|
|
|||
Loading…
Reference in New Issue