IllegalShipDataMapper.java 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package com.ruoyi.system.mapper;
  2. import java.util.List;
  3. import com.ruoyi.system.domain.IllegalShipData;
  4. /**
  5. * 嫌疑违法船舶Mapper接口
  6. *
  7. * @author xintong
  8. * @date 2021-11-05
  9. */
  10. public interface IllegalShipDataMapper
  11. {
  12. /**
  13. * 查询嫌疑违法船舶
  14. *
  15. * @param id 嫌疑违法船舶ID
  16. * @return 嫌疑违法船舶
  17. */
  18. public IllegalShipData selectIllegalShipDataById(Long id);
  19. /**
  20. * 查询嫌疑违法船舶列表
  21. *
  22. * @param illegalShipData 嫌疑违法船舶
  23. * @return 嫌疑违法船舶集合
  24. */
  25. public List<IllegalShipData> selectIllegalShipDataList(IllegalShipData illegalShipData);
  26. /**
  27. * 新增嫌疑违法船舶
  28. *
  29. * @param illegalShipData 嫌疑违法船舶
  30. * @return 结果
  31. */
  32. public int insertIllegalShipData(IllegalShipData illegalShipData);
  33. /**
  34. * 修改嫌疑违法船舶
  35. *
  36. * @param illegalShipData 嫌疑违法船舶
  37. * @return 结果
  38. */
  39. public int updateIllegalShipData(IllegalShipData illegalShipData);
  40. /**
  41. * 删除嫌疑违法船舶
  42. *
  43. * @param id 嫌疑违法船舶ID
  44. * @return 结果
  45. */
  46. public int deleteIllegalShipDataById(Long id);
  47. /**
  48. * 批量删除嫌疑违法船舶
  49. *
  50. * @param ids 需要删除的数据ID
  51. * @return 结果
  52. */
  53. public int deleteIllegalShipDataByIds(Long[] ids);
  54. }