debug
This commit is contained in:
parent
7590c5db9c
commit
cd0c2c0a93
|
@ -65,6 +65,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
sm.model_name as model,
|
sm.model_name as model,
|
||||||
sm.picture as picture,
|
sm.picture as picture,
|
||||||
sm.tags as model_tags,
|
sm.tags as model_tags,
|
||||||
|
ss.user_id as user_id,
|
||||||
ss.name as store_name,
|
ss.name as store_name,
|
||||||
su.user_name as user_name
|
su.user_name as user_name
|
||||||
from sm_device sd
|
from sm_device sd
|
||||||
|
@ -296,8 +297,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
|
|
||||||
<update id="unbindStore">
|
<update id="unbindStore">
|
||||||
update sm_device
|
update sm_device
|
||||||
set user_id = null,
|
set store_id = null
|
||||||
store_id = null
|
|
||||||
where device_id = #{deviceId}
|
where device_id = #{deviceId}
|
||||||
</update>
|
</update>
|
||||||
|
|
||||||
|
|
|
@ -135,19 +135,21 @@ public class StoreServiceImpl implements IStoreService
|
||||||
public List<StoreVo> listCount(StoreQuery query) {
|
public List<StoreVo> listCount(StoreQuery query) {
|
||||||
List<StoreVo> list = new ArrayList<>();
|
List<StoreVo> list = new ArrayList<>();
|
||||||
|
|
||||||
|
// 查询各各店铺的设备数据
|
||||||
|
List<StoreVo> storeList = storeMapper.selectSmStoreList(query);
|
||||||
|
storeAssembler.assembleDeviceCount(storeList);
|
||||||
|
|
||||||
// 查询全部设备数据
|
// 查询全部设备数据
|
||||||
SmDeviceQuery deviceDto = new SmDeviceQuery();
|
SmDeviceQuery deviceDto = new SmDeviceQuery();
|
||||||
deviceDto.setUserId(query.getUserId());
|
deviceDto.setStoreIds(storeList.stream().map(StoreVo::getStoreId).collect(Collectors.toList()));
|
||||||
int count = smDeviceService.selectCount(deviceDto);
|
int count = smDeviceService.selectCount(deviceDto);
|
||||||
StoreVo all = new StoreVo();
|
StoreVo all = new StoreVo();
|
||||||
all.setDeviceCount(count);
|
all.setDeviceCount(count);
|
||||||
all.setName("全部");
|
all.setName("全部");
|
||||||
list.add(all);
|
|
||||||
|
|
||||||
// 查询各各店铺的设备数据
|
list.add(all);
|
||||||
List<StoreVo> storeList = storeMapper.selectSmStoreList(query);
|
|
||||||
storeAssembler.assembleDeviceCount(storeList);
|
|
||||||
list.addAll(storeList);
|
list.addAll(storeList);
|
||||||
|
|
||||||
return list;
|
return list;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user