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