Browse Source

Merge branch 'Regulation' of http://git.izouma.com/licailing/wenlvju into Regulation

xuqiang 4 years ago
parent
commit
c6609a030c

+ 6 - 0
src/main/java/com/izouma/wenlvju/web/performance/ArrangeJudgeController.java

@@ -67,6 +67,12 @@ public class ArrangeJudgeController extends BaseController {
         arrangeJudgeService.assignJudge(experts, arranges);
     }
 
+    @ApiOperation("线上分配评委")
+    @PostMapping("/assignJudgeOnline")
+    public void assignJudgeOnline(String experts, String arranges) {
+        arrangeJudgeService.assignJudgeOnline(experts, arranges);
+    }
+
     @PreAuthorize("hasRole('ADMIN')")
     @ApiOperation("取消分配")
     @PostMapping("/cancelAssign")