package com.ruoyi.manage.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.ruoyi.manage.domain.DpShipParking;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 泊位停船信息表 Mapper 接口
|
* </p>
|
*
|
* @author sunjiawei
|
* @since 2025-03-22
|
*/
|
@Mapper
|
public interface DpShipParkingMapper extends BaseMapper<DpShipParking> {
|
List<DpShipParking> getPageList(DpShipParking dpShipParking);
|
|
Integer getTotal(DpShipParking dpShipType);
|
}
|