|
@@ -1,7 +1,6 @@
|
|
|
package com.sooka.sponest.monitor.uav.mapper;
|
|
|
|
|
|
import com.sooka.sponest.monitor.uav.domain.CentermonitorTUav;
|
|
|
-import com.sooka.sponest.monitor.uav.domain.CentermonitorTUavdept;
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
import java.util.List;
|
|
@@ -19,7 +18,7 @@ public interface CentermonitorTUavMapper {
|
|
|
* @param id 无人机主键
|
|
|
* @return 无人机
|
|
|
*/
|
|
|
- public CentermonitorTUav selectCentermonitorTUavById(Long id);
|
|
|
+ public CentermonitorTUav selectCentermonitorTUavById(String id);
|
|
|
|
|
|
/**
|
|
|
* 查询无人机列表
|
|
@@ -51,7 +50,7 @@ public interface CentermonitorTUavMapper {
|
|
|
* @param id 无人机主键
|
|
|
* @return 结果
|
|
|
*/
|
|
|
- public int deleteCentermonitorTUavById(Long id);
|
|
|
+ public int deleteCentermonitorTUavById(String id);
|
|
|
|
|
|
/**
|
|
|
* 批量删除无人机
|
|
@@ -59,7 +58,7 @@ public interface CentermonitorTUavMapper {
|
|
|
* @param ids 需要删除的数据主键集合
|
|
|
* @return 结果
|
|
|
*/
|
|
|
- public int deleteCentermonitorTUavByIds(Long[] ids);
|
|
|
+ public int deleteCentermonitorTUavByIds(String[] ids);
|
|
|
|
|
|
/**
|
|
|
* 根据部门id查询无人机列表
|