he2802 2 anos atrás
pai
commit
0d5feb061d

+ 1 - 1
zhongzheng-admin/src/main/java/com/zhongzheng/controller/common/CommonController.java

@@ -211,7 +211,7 @@ public class CommonController
     }
 
     @ApiOperation("批量查询官方班级人数")
-    @PostMapping("common/batch/officialGradeCount")
+    @PostMapping("common/free/batch/officialGradeCount")
     public AjaxResult batchOfficialGradeCount(@RequestBody ClassGradeBatchQueryBo bo)
     {
         if(!ToolsUtils.checkSignFromOldSys(bo.getStamp().toString(),bo.getSign())){

+ 1 - 0
zhongzheng-framework/src/main/java/com/zhongzheng/framework/config/SecurityConfig.java

@@ -125,6 +125,7 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter
                 .antMatchers("/profile/**").anonymous()
                 .antMatchers("/common/jzs/**").anonymous()
                 .antMatchers("/common/rollback/period").anonymous()
+                .antMatchers("/common/free/**").anonymous()
                 .antMatchers("/common/download**").anonymous()
                 .antMatchers("/common/download/resource**").anonymous()
                 .antMatchers("/swagger-ui.html").anonymous()

+ 1 - 1
zhongzheng-system/src/main/java/com/zhongzheng/modules/grade/bo/ClassGradeBatchQueryBo.java

@@ -30,6 +30,6 @@ public class ClassGradeBatchQueryBo extends BaseEntity {
 	private String sign;
 
 	/** 官方班级 */
-	@ApiModelProperty("官方班级数组")
+	@ApiModelProperty("官方班级名称,多个,拼接")
 	private String officialNameStr;
 }