package com.ruoyi.manage.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ruoyi.manage.domain.DpShips; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; import java.util.List; import java.util.Map; /** *

* 舰船表 Mapper 接口 *

* * @author zhangyy * @since 2025-03-11 */ @Mapper public interface DpShipsMapper extends BaseMapper { DpShips getDpShipsById(String id); List getPageList(DpShips ships); long getTotal(DpShips ships); //根据码头ID和泊位ID查询舰船列表 List getByWhIdBeId(DpShips dpShips); }