|
|
@@ -235,11 +235,10 @@ public class WxRentContractController extends BaseController { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
@PostMapping("updateRentContractStatus") |
|
|
@PostMapping("updateRentContractStatus") |
|
|
@ApiImplicitParam(name = "id", value = "id", dataType = "Long", paramType = "query", required = true) |
|
|
|
|
|
@SystemControllerLog(description = "租赁合同-更新合同状态") |
|
|
@SystemControllerLog(description = "租赁合同-更新合同状态") |
|
|
public ResultData updateRentContractStatus(Long id) { |
|
|
|
|
|
|
|
|
public ResultData updateRentContractStatus(@ModelAttribute WxRentContract wxRentContract) { |
|
|
logger.debug("[" + getIpAddr() + "] WxRentContractController::updateRentContractStatus"); |
|
|
logger.debug("[" + getIpAddr() + "] WxRentContractController::updateRentContractStatus"); |
|
|
return wxRentContractService.updateRentContractStatus(id); |
|
|
|
|
|
|
|
|
return wxRentContractService.updateRentContractStatus(wxRentContract.getId()); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
@GetMapping("getPayAccountInfo") |
|
|
@GetMapping("getPayAccountInfo") |
|
|
|