TUserLocationServiceImpl.java 2.57 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
package com.zehong.system.service.impl;

import java.util.List;
import java.util.Map;

import com.zehong.common.utils.DateUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.zehong.system.mapper.TUserLocationMapper;
import com.zehong.system.domain.TUserLocation;
import com.zehong.system.service.ITUserLocationService;

/**
 * 巡检员定位Service业务层处理
 * 
 * @author zehong
 * @date 2021-07-31
 */
@Service
public class TUserLocationServiceImpl implements ITUserLocationService 
{
    @Autowired
    private TUserLocationMapper tUserLocationMapper;

    /**
     * 查询巡检员定位
     * 
     * @param locationId 巡检员定位ID
     * @return 巡检员定位
     */
    @Override
    public TUserLocation selectTUserLocationById(Long locationId)
    {
        return tUserLocationMapper.selectTUserLocationById(locationId);
    }

    /**
     * 查询巡检员定位列表
     * 
     * @param tUserLocation 巡检员定位
     * @return 巡检员定位
     */
    @Override
    public List<TUserLocation> selectTUserLocationList(TUserLocation tUserLocation)
    {
        return tUserLocationMapper.selectTUserLocationList(tUserLocation);
    }

    @Override
    public List<TUserLocation> selectTUserLocationListByMap(Map<String,Object> map){
        return tUserLocationMapper.selectTUserLocationListByMap(map);
    }

    /**
     * 新增巡检员定位
     * 
     * @param tUserLocation 巡检员定位
     * @return 结果
     */
    @Override
    public int insertTUserLocation(TUserLocation tUserLocation)
    {
        tUserLocation.setCreateTime(DateUtils.getNowDate());
        return tUserLocationMapper.insertTUserLocation(tUserLocation);
    }

    /**
     * 修改巡检员定位
     * 
     * @param tUserLocation 巡检员定位
     * @return 结果
     */
    @Override
    public int updateTUserLocation(TUserLocation tUserLocation)
    {
        return tUserLocationMapper.updateTUserLocation(tUserLocation);
    }

    /**
     * 批量删除巡检员定位
     * 
     * @param locationIds 需要删除的巡检员定位ID
     * @return 结果
     */
    @Override
    public int deleteTUserLocationByIds(Long[] locationIds)
    {
        return tUserLocationMapper.deleteTUserLocationByIds(locationIds);
    }

    /**
     * 删除巡检员定位信息
     * 
     * @param locationId 巡检员定位ID
     * @return 结果
     */
    @Override
    public int deleteTUserLocationById(Long locationId)
    {
        return tUserLocationMapper.deleteTUserLocationById(locationId);
    }
}