|
|
|
@ -31,7 +31,6 @@ public class FundraisingController {
|
|
|
|
|
@AnonymousAccess
|
|
|
|
|
@GetMapping("getFundraising")
|
|
|
|
|
@ApiOperation("资金募资回显")
|
|
|
|
|
@AnonymousAccess
|
|
|
|
|
public ResultEntity getFundraising(@ApiParam("流程id") @RequestParam String flowId) {
|
|
|
|
|
Fundraising fundraising=fundraisingService.selectByFlowId(flowId);
|
|
|
|
|
return new ResultEntity(HttpStatus.OK,"资金募资回显成功",fundraising);
|
|
|
|
@ -40,7 +39,6 @@ public class FundraisingController {
|
|
|
|
|
@AnonymousAccess
|
|
|
|
|
@GetMapping("insertFundraising")
|
|
|
|
|
@ApiOperation("新增基金募资")
|
|
|
|
|
@AnonymousAccess
|
|
|
|
|
public ResultEntity insertFundraising(@ApiParam("流程id") @RequestParam String flowId,
|
|
|
|
|
@ApiParam("自有资金") @RequestParam BigDecimal ownFunds,
|
|
|
|
|
@ApiParam("银行借款") @RequestParam BigDecimal bankLoan,
|
|
|
|
|