| @@ -775,10 +775,15 @@ public class WxRentContractController extends WxContractBaseController { | |||||
| @GetMapping("exportContract") | @GetMapping("exportContract") | ||||
| @ApiImplicitParams({ | @ApiImplicitParams({ | ||||
| @ApiImplicitParam(name = "rentId", value = "rentId", dataType = "Long", paramType = "query", required = false), | @ApiImplicitParam(name = "rentId", value = "rentId", dataType = "Long", paramType = "query", required = false), | ||||
| @ApiImplicitParam(name = "propertyId", value = "propertyId", dataType = "Long", paramType = "query", required = false)}) | |||||
| @ApiImplicitParam(name = "propertyId", value = "propertyId", dataType = "String", paramType = "query", required = false)}) | |||||
| @SystemControllerLog(description = "租赁合同-导出合同") | @SystemControllerLog(description = "租赁合同-导出合同") | ||||
| public void exportContract(Long rentId,Long propertyId,HttpServletRequest request, HttpServletResponse response){ | |||||
| wxRentContractService.exportContract(request,response,rentId,propertyId); | |||||
| public void exportContract(Long rentId,String propertyId,HttpServletRequest request, HttpServletResponse response){ | |||||
| Long pid = null; | |||||
| try { | |||||
| pid = Long.parseLong(propertyId); | |||||
| }catch(Exception e) { | |||||
| } | |||||
| wxRentContractService.exportContract(request,response,rentId,pid); | |||||
| } | } | ||||