|
@@ -10,6 +10,7 @@ import com.zjugis.framework.common.pojo.CommonResult;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestParam;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
@@ -49,7 +50,7 @@ public class ContractInvoiceController {
|
|
|
|
|
|
|
|
|
@GetMapping("/contractInovoice/process")
|
|
|
- public CommonResult<String> process(String contractId) {
|
|
|
+ public CommonResult<String> process(@RequestParam("contractId") String contractId) {
|
|
|
String url = contractInvoiceService.process(contractId);
|
|
|
return CommonResult.success(url);
|
|
|
}
|