IntelligentRecognition/ah-jjsp-service/.svn/pristine/f6/f681d64935d94e0d792d096abd8...

53 lines
1.0 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.sercurityControl.proteam.mapper;
import com.sercurityControl.proteam.domain.ClassData;
import com.sercurityControl.proteam.domain.UAVBandProEntity;
import com.sercurityControl.proteam.domain.UavEntity;
import java.util.List;
/**
* @author Administrator
*/
public interface UavPatrolMapper {
/**
* 通过userId判断权限来获取无人机数据
*
* @param userId 用户id
* @return
**/
List<UavEntity> getUavData(String userId);
/**
* 获取无人机数据 绑定信息
*
* @return 集合
**/
List<UAVBandProEntity> getUavBandProList();
/**
* 获取工程集合
*
* @return 集合
**/
List<UAVBandProEntity> getProList();
/**
* 修改设备绑定工程
*
* @param entity 条件
* @return 集合
**/
Integer updateBand(UAVBandProEntity entity);
/**
* 获取站班会信息
*
* @param entity 条件
* @return 集合
*/
List<ClassData> getClass(ClassData entity);
}