Sfoglia il codice sorgente

rent depositInfo

release_toaliyun_real
xhxu 5 anni fa
parent
commit
8c404eb015
1 ha cambiato i file con 3 aggiunte e 0 eliminazioni
  1. +3
    -0
      mallinkService/src/main/java/com/iformall/service/impl/WxBillRentServiceImpl.java

+ 3
- 0
mallinkService/src/main/java/com/iformall/service/impl/WxBillRentServiceImpl.java Vedi File

@@ -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);

//解单金额


Caricamento…
Annulla
Salva