13693261870
2025-07-02 6708810c4de34dfb9513061432d656f91d56ee3a
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
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;
 
/**
 * <p>
 * 舰船表 Mapper 接口
 * </p>
 *
 * @author zhangyy
 * @since 2025-03-11
 */
@Mapper
public interface DpShipsMapper extends BaseMapper<DpShips> {
 
    DpShips getDpShipsById(String id);
 
    List<DpShips> getPageList(DpShips ships);
 
    long getTotal(DpShips ships);
 
    //根据码头ID和泊位ID查询舰船列表
    List<DpShips> getByWhIdBeId(DpShips dpShips);
 
}