Commit 5d261386 by jianshuqin

增加功能:审核通过增加审核意见

parent 89e8aa70
......@@ -283,10 +283,11 @@ public class CostController {
@GetMapping("/check/finalCheck")
@ApiOperation("最终审核通过")
public CostResult<Void> finalCheck(@RequestParam String costNo,
@RequestParam Integer userid) {
@RequestParam Integer userid,
@RequestParam String reason) {
CostContext costContext = new CostContext(costNo, userid);
costContext.setCostState(finalCheckState);
costContext.handle(null);
costContext.handle(reason);
return CostResult.success();
}
......
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