Просмотр исходного кода

修改停车列表

release_toaliyun_real
luozukai 7 лет назад
Родитель
Сommit
6ee9edb89d
1 измененных файлов: 2 добавлений и 2 удалений
  1. +2
    -2
      mallinkService/src/main/java/com/iformall/service/impl/WxFlowServiceImpl.java

+ 2
- 2
mallinkService/src/main/java/com/iformall/service/impl/WxFlowServiceImpl.java Просмотреть файл

@@ -89,12 +89,12 @@ public class WxFlowServiceImpl implements WxFlowService {
public void updateBusinessStatus(Long businessId,Integer flowType,Integer contractType,Integer applyStatus){
if(1 == flowType){
// 1租赁合同 2点位合同wx_rent_contract 3物业wx_property_contract 4点位物业合同
if(contractType == 1 || contractType == 2){
if(contractType.intValue() == 1 || contractType.intValue() == 2){
WxRentContract rent = new WxRentContract();
rent.setId(businessId);
rent.setApplyStatus(applyStatus);
wxRentContractService.updateApplyStatus(rent);
}else if(contractType == 3 || contractType == 4){
}else if(contractType.intValue() == 3 || contractType.intValue() == 4){
WxPropertyContract wxPropertyContract = new WxPropertyContract();
wxPropertyContract.setId(businessId);
wxPropertyContract.setApplyStatus(applyStatus);


Загрузка…
Отмена
Сохранить