Explorar el Código

rent depositInfo

release_toaliyun_real
xhxu hace 5 años
padre
commit
8c404eb015
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  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 Ver fichero

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

//解单金额


Cargando…
Cancelar
Guardar