项目删除接口优化
Some checks failed
JslGroup/JslDeveloper/JSL_OrganizeInternalOA/pipeline/head There was a failure building this commit

This commit is contained in:
xiangZr-hhh 2024-03-12 11:29:52 +08:00
parent 935003c126
commit ee9e361130

View File

@ -63,7 +63,7 @@ public interface ProjectMapper {
@Select("select * from organize_oa.oa_project where name=#{name}") @Select("select * from organize_oa.oa_project where name=#{name}")
ProjectDO getByName(String name); ProjectDO getByName(String name);
@Delete("DELETE FROM organize_oa.oa_project where id=#{id}") @Update("UPDATE organize_oa.oa_project SET is_delete = 1 where id=#{id}")
boolean deleteProject(Long id); boolean deleteProject(Long id);
@Insert("INSERT INTO organize_oa.oa_project_cutting (pid, name, tag, real_time) " + @Insert("INSERT INTO organize_oa.oa_project_cutting (pid, name, tag, real_time) " +