Commit c152ec2b authored by suntao's avatar suntao

job

parent 13b28209
...@@ -108,6 +108,25 @@ public class OrderController { ...@@ -108,6 +108,25 @@ public class OrderController {
} }
/**
* 二次风控审批
*
* @return
*/
//@Security(authorityId = "Order.loadSecondAuditJob")
@GetMapping("/loadSecondAuditJob")
public Result<Boolean> loadSecondAuditJob() {
if (Application.isDebug()) {
this.orderService.loadSecondAuditJob();
return Result.buildSuccess(true, "success");
} else {
return Result.buildSuccess(false,"无此操作");
}
}
/** /**
* 贷前关单 * 贷前关单
* *
......
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