TUserLocationMapper.java 1.54 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
package com.zehong.system.mapper;

import com.zehong.system.domain.TUserLocation;

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

/**
 * 巡检员定位Mapper接口
 * 
 * @author zehong
 * @date 2021-07-31
 */
public interface TUserLocationMapper 
{
    /**
     * 查询巡检员定位
     * 
     * @param locationId 巡检员定位ID
     * @return 巡检员定位
     */
    public TUserLocation selectTUserLocationById(Long locationId);

    /**
     * 查询巡检员定位列表
     * 
     * @param tUserLocation 巡检员定位
     * @return 巡检员定位集合
     */
    public List<TUserLocation> selectTUserLocationList(TUserLocation tUserLocation);

    /**
     * 查询巡检员定位byMap
     * @param map
     * @return
     */
    List<TUserLocation> selectTUserLocationListByMap(Map<String,Object> map);

    /**
     * 新增巡检员定位
     * 
     * @param tUserLocation 巡检员定位
     * @return 结果
     */
    public int insertTUserLocation(TUserLocation tUserLocation);

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

    /**
     * 删除巡检员定位
     * 
     * @param locationId 巡检员定位ID
     * @return 结果
     */
    public int deleteTUserLocationById(Long locationId);

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