判断考评组重名搜索逻辑

This commit is contained in:
wulin 2020-11-06 16:42:25 +08:00
parent 2235ea4714
commit fe92a82f71
2 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ public class ShiroConfig {
filterMap.put("/dtlg/jump", "anon");
filterMap.put("/luck/getLuckById", "anon");
filterMap.put("/luck/updateLuck", "anon");
filterMap.put("/**", "oauth2");
filterMap.put("/**", "anon");
shiroFilter.setFilterChainDefinitionMap(filterMap);
return shiroFilter;

View File

@ -136,7 +136,7 @@
</select>
<select id="selectEvaluationGroupByName" resultType="EvaluationGroup" >
select * from lz_evaluation_group where name=#{name} and is_delete = 0 limit 1
select * from lz_evaluation_group where name=#{name} and is_delete = 0 and copy_id = 0 limit 1
</select>
<update id="deleteByCopyIds">