|
|
|
@@ -286,6 +286,8 @@ public class WxBillRentServiceImpl implements WxBillRentService { |
|
|
|
public Object detail(Long id) { |
|
|
|
//租赁 |
|
|
|
WxBillRent rent = getById(id); |
|
|
|
//合同 |
|
|
|
WxRentContract wxRentContract = wxRentContractMapper.selectById(rent.getRentContractId()); |
|
|
|
//押金 |
|
|
|
WxBillDeposit depositParam = new WxBillDeposit(); |
|
|
|
depositParam.setRentContractId(rent.getRentContractId()); |
|
|
|
@@ -300,6 +302,7 @@ public class WxBillRentServiceImpl implements WxBillRentService { |
|
|
|
//周期 |
|
|
|
Map<String, Object> result = new HashMap<>(3); |
|
|
|
result.put("rent", rent); |
|
|
|
result.put("wxRentContract", wxRentContract); |
|
|
|
result.put("deposit", deposit); |
|
|
|
|
|
|
|
//解单金额 |
|
|
|
|