/*
|
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
|
*
|
* Redistribution and use in source and binary forms, with or without
|
* modification, are permitted provided that the following conditions are met:
|
*
|
* Redistributions of source code must retain the above copyright notice,
|
* this list of conditions and the following disclaimer.
|
* Redistributions in binary form must reproduce the above copyright
|
* notice, this list of conditions and the following disclaimer in the
|
* documentation and/or other materials provided with the distribution.
|
* Neither the name of the dreamlu.net developer nor the names of its
|
* contributors may be used to endorse or promote products derived from
|
* this software without specific prior written permission.
|
* Author: Chill 庄骞 (smallchill@163.com)
|
*/
|
package org.springblade.modules.equipment.service.impl;
|
|
import com.baomidou.dynamic.datasource.annotation.DS;
|
import org.springblade.common.cache.SysCache;
|
import org.springblade.core.secure.utils.AuthUtil;
|
import org.springblade.core.tool.node.ForestNodeMerger;
|
import org.springblade.core.tool.utils.Func;
|
import org.springblade.core.tool.utils.StringPool;
|
import org.springblade.modules.equipment.entity.Equipment;
|
import org.springblade.modules.equipment.vo.EquipmentVO;
|
import org.springblade.modules.equipment.mapper.EquipmentMapper;
|
import org.springblade.modules.equipment.service.IEquipmentService;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import org.springblade.modules.equipment.vo.EquipmentVOS;
|
import org.springblade.modules.system.entity.Dept;
|
import org.springframework.stereotype.Service;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* 服务实现类
|
*
|
* @author BladeX
|
* @since 2020-07-01
|
*/
|
@Service
|
@DS("slaves")
|
public class EquipmentServiceImpl extends ServiceImpl<EquipmentMapper, Equipment> implements IEquipmentService {
|
private static final String PARENT_ID = "parentId";
|
|
@Override
|
public List<EquipmentVO> selectEquipmentPage(String deviceName, String addvcd, String dtype, String devicestate) {
|
return baseMapper.selectEquipmentPage(deviceName,addvcd,dtype,devicestate);
|
}
|
|
|
|
@Override
|
public List<EquipmentVOS> tree() {
|
return ForestNodeMerger.merge(baseMapper.tree());
|
}
|
|
@Override
|
public void updateOne(Equipment equipment) {
|
baseMapper.updateOne(equipment);
|
}
|
|
@Override
|
public void s(Equipment equipment) {
|
baseMapper.s(equipment);
|
}
|
|
@Override
|
public List<EquipmentVOS> lazyList(Long parentId, Map<String, Object> param) {
|
// 判断点击搜索但是没有查询条件的情况
|
if (Func.isEmpty(param.get(PARENT_ID)) && param.size() == 1) {
|
parentId = 0L;
|
}
|
// 判断点击搜索带有查询条件的情况
|
if (Func.isEmpty(param.get(PARENT_ID)) && param.size() > 1 && Func.toLong(parentId) == 0L) {
|
parentId = null;
|
}
|
return baseMapper.lazyList(parentId, param);
|
}
|
|
@Override
|
public EquipmentVOS selectInfo(Equipment equipment) {
|
return baseMapper.selectInfo(equipment);
|
}
|
|
@Override
|
public List<Map<String, Object>> selectInfos(String deviceNumber) {
|
return baseMapper.selectInfos(deviceNumber);
|
}
|
|
@Override
|
public List<EquipmentVOS> selectList(String deviceType) {
|
return baseMapper.selectList(deviceType);
|
}
|
|
}
|