feat:人员出国

ln_ry20250512
wangxy 3 weeks ago
parent 265317a793
commit 77f907a8b7

@ -38,15 +38,29 @@ public class ApplyInfoListManager {
private TdFileRelationService fileRelationService;
/**
*
* @param applyInfoListDTO
* @return
*/
public List<TdApplyInfoList> selectTdApplyInfoListList(TdApplyInfoListDTO applyInfoListDTO) {
return applyInfoListService.selectTdApplyInfoListList(applyInfoListDTO);
}
/**
*
* @param applyInfoListDTO
* @return
*/
public List<TdApplyInfoList> selectTdApplyInfoListListByApplyStatus(TdApplyInfoListDTO applyInfoListDTO) {
return applyInfoListService.selectTdApplyInfoListListByApplyStatus(applyInfoListDTO);
}
/**
*
* @param applyInfoListDTO
* @return
*/
public List<TdApplyInfoList> selectTdAuditInfoListList(TdApplyInfoListDTO applyInfoListDTO) {
return applyInfoListService.selectTdAuditInfoListList(applyInfoListDTO);
}

@ -44,10 +44,9 @@ public class TrainInfoListManager {
/**
* 0123退45
*/
TdApplyInfoList applyInfoList = new TdApplyInfoList();
applyInfoList.setApplyId(tdTrainDTO.getApplyId());
applyInfoList.setApplyStatus("4");
applyInfoListService.saveOrUpdate(applyInfoList);
applyInfoListService.lambdaUpdate().
eq(TdApplyInfoList::getApplyId,tdTrainDTO.getApplyId()).
set(TdApplyInfoList::getApplyStatus,"4").update();
return trainService.saveOrUpdate(train);
}
}

@ -23,7 +23,7 @@ import java.util.List;
/**
* ClassName: TrainInfoListController
* Package: com.ruoyi.web.controller.system.apply
* Description:
* Description:
*
* @Author zhaodw
* @Create 2025/5/15 15:31

Loading…
Cancel
Save