Showing
1 changed file
with
2 additions
and
2 deletions
| ... | ... | @@ -553,7 +553,7 @@ public class ContractDistributorStandardController extends DefaultBaseController |
| 553 | 553 | @PostMapping("/uploadFormalContract") |
| 554 | 554 | public InvokeResult<Void> uploadFormalContract(@RequestBody UpdateContractDistributorStandardVo vo) { |
| 555 | 555 | if (StringUtils.isBlank(vo.getFormalFileId()) || StringUtils.isBlank(vo.getId())) { |
| 556 | - throw new DefaultClientException("参数错误!"); | |
| 556 | + throw new DefaultClientException("规范性合同附件不能为空!"); | |
| 557 | 557 | } |
| 558 | 558 | |
| 559 | 559 | contractDistributorStandardService.uploadFormalContract(vo); |
| ... | ... | @@ -579,7 +579,7 @@ public class ContractDistributorStandardController extends DefaultBaseController |
| 579 | 579 | @PostMapping("/uploadStandardContract") |
| 580 | 580 | public InvokeResult<Void> uploadStandardContract(@RequestBody UpdateContractDistributorStandardVo vo) { |
| 581 | 581 | if (StringUtils.isBlank(vo.getStandardFileId()) || StringUtils.isBlank(vo.getId())) { |
| 582 | - throw new DefaultClientException("参数错误!"); | |
| 582 | + throw new DefaultClientException("规范性合同附件不能为空!"); | |
| 583 | 583 | } |
| 584 | 584 | |
| 585 | 585 | contractDistributorStandardService.uploadStandardContract(vo); | ... | ... |