Commit 87077dd41d2959ccdf34917739f895be9d50edd0
Merge remote-tracking branch 'origin/master_0929' into master_0929
Showing
1 changed file
with
3 additions
and
1 deletions
| ... | ... | @@ -435,7 +435,7 @@ public class ContractDistributorStandardController extends DefaultBaseController |
| 435 | 435 | |
| 436 | 436 | @ApiModelProperty("锁价") |
| 437 | 437 | @PostMapping("/priceLock") |
| 438 | - public void priceLock(@RequestBody UpdateContractDistributorStandardVo vo) { | |
| 438 | + public InvokeResult<Void> priceLock(@RequestBody UpdateContractDistributorStandardVo vo) { | |
| 439 | 439 | if (vo == null || StringUtils.isBlank(vo.getId())) { |
| 440 | 440 | throw new DefaultClientException("参数错误!"); |
| 441 | 441 | } |
| ... | ... | @@ -443,6 +443,8 @@ public class ContractDistributorStandardController extends DefaultBaseController |
| 443 | 443 | contractDistributorStandardService.stockContractPriceLock(vo); |
| 444 | 444 | |
| 445 | 445 | contractDistributorStandardService.cleanCacheByKey(vo.getId()); |
| 446 | + | |
| 447 | + return InvokeResultBuilder.success(); | |
| 446 | 448 | } |
| 447 | 449 | |
| 448 | 450 | /** | ... | ... |