feature-zrx #45

Merged
XiaoLFeng merged 9 commits from feature-zrx into develop 2024-04-25 16:53:48 +08:00
2 changed files with 5 additions and 5 deletions
Showing only changes of commit 5b7daf5824 - Show all commits

View File

@ -131,7 +131,6 @@ public class ProjectServiceImpl implements ProjectService {
@Override
public BaseResponse projectFileGet(HttpServletRequest request, Long projectId) {
// 判断项目是否存在
if (!projectDAO.isExistProjectById(projectId)) {
return ResultUtil.error(ErrorCode.PROJECT_NOT_EXIST);

View File

@ -139,10 +139,11 @@
where id = #{id}
</update>
<delete id="deleteReview">
delete organize_oa.oa_review
where id = ${id}
</delete>
<update id="deleteReview">
update organize_oa.oa_review
set is_deleted = 1
where id = ${id}
</update>
<select id="getAllReviewByProjectId">
select * from organize_oa.oa_review