|
|
@ -1,7 +1,6 @@ |
|
|
package com.ccsens.wisdomcar.service; |
|
|
package com.ccsens.wisdomcar.service; |
|
|
|
|
|
|
|
|
import cn.hutool.core.collection.CollectionUtil; |
|
|
import cn.hutool.core.collection.CollectionUtil; |
|
|
import com.alibaba.fastjson.JSONObject; |
|
|
|
|
|
import com.ccsens.util.bean.dto.QueryDto; |
|
|
import com.ccsens.util.bean.dto.QueryDto; |
|
|
import com.ccsens.util.exception.BaseException; |
|
|
import com.ccsens.util.exception.BaseException; |
|
|
import com.ccsens.wisdomcar.bean.dto.WisdomCarDto; |
|
|
import com.ccsens.wisdomcar.bean.dto.WisdomCarDto; |
|
|
@ -181,7 +180,6 @@ public class WisdomCarService implements IWisdomCarService { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
@Override |
|
|
public List<WisdomCarVo.FreeCar> queryFreeCar(WisdomCarDto.FreeCar param, Long userId) { |
|
|
public List<WisdomCarVo.FreeCar> queryFreeCar(WisdomCarDto.FreeCar param, Long userId) { |
|
|
HospitalMemberExample example = new HospitalMemberExample(); |
|
|
HospitalMemberExample example = new HospitalMemberExample(); |
|
|
@ -193,4 +191,17 @@ public class WisdomCarService implements IWisdomCarService { |
|
|
Long hospitalId = hospitalMembers.get(0).getHospitalId(); |
|
|
Long hospitalId = hospitalMembers.get(0).getHospitalId(); |
|
|
return wisdomcarDao.queryFreeCar(hospitalId); |
|
|
return wisdomcarDao.queryFreeCar(hospitalId); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
public void bindingCar(WisdomCarDto.BindingCar param, Long userId) { |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
public void uploadCarData(WisdomCarDto.UploadCarData param, Long userId) { |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
|