package com.ruoyi.manage.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ruoyi.manage.domain.DmBerth; import com.ruoyi.manage.domain.DpBerth; import org.apache.ibatis.annotations.Mapper; import java.util.List; /** *

* 泊位 Mapper 接口 *

* * @author zhangyy * @since 2025-03-11 */ @Mapper public interface DpBerthMapper extends BaseMapper { List getPageList(DmBerth dpBerth); long getTotal(DmBerth dpBerth); void deleteByWhId(Integer whId); }