Commit 8c0798db authored by Quxl's avatar Quxl

x

parent f6c7fcf3
...@@ -197,6 +197,20 @@ public class AdminReviewController { ...@@ -197,6 +197,20 @@ public class AdminReviewController {
return Rjx.jsonOk(); return Rjx.jsonOk();
} }
@ResponseBody
@Transactional
@PostMapping("toNextRoundBatch")
@ApiOperation("进入下一轮审片")
@ApiImplicitParams({
@ApiImplicitParam(paramType="query", dataType="int", required=true, name="review_id", value="审片主表ID"),
})
public Object toNextRoundBatch(Integer[] review_id) {
for(Integer id : review_id) {
reviewService.toNextRound(id);
}
return Rjx.jsonOk();
}
@ResponseBody @ResponseBody
@Transactional @Transactional
@PostMapping("saveReviewRecord") @PostMapping("saveReviewRecord")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment