|
|
@@ -698,6 +698,15 @@ public class WxRentContractServiceImpl implements WxRentContractService { |
|
|
return getResultDataForUpdate(record); |
|
|
return getResultDataForUpdate(record); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
public ResultData updateRentContractStatus(Long id) { |
|
|
|
|
|
WxRentContract wxRentContract = new WxRentContract(); |
|
|
|
|
|
wxRentContract.setId(id); |
|
|
|
|
|
wxRentContract.setStatus(EnumRentContractStatus.SIGNED_RENT_UNPAID.getCode()); |
|
|
|
|
|
wxRentContractMapper.updateByPrimaryKeySelective(wxRentContract); |
|
|
|
|
|
return null; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
public Map<String, Object> getRentAndPropertyInfo(Long id) { |
|
|
public Map<String, Object> getRentAndPropertyInfo(Long id) { |
|
|
logger.info("获取租赁物业合同数据>>>>>>id:" + id); |
|
|
logger.info("获取租赁物业合同数据>>>>>>id:" + id); |
|
|
WxRentContract wxRentContract = wxRentContractMapper.selectByPrimaryKey(id); |
|
|
WxRentContract wxRentContract = wxRentContractMapper.selectByPrimaryKey(id); |
|
|
|