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;
|
|
/**
|
* <p>
|
* 泊位 Mapper 接口
|
* </p>
|
*
|
* @author zhangyy
|
* @since 2025-03-11
|
*/
|
@Mapper
|
public interface DpBerthMapper extends BaseMapper<DmBerth> {
|
|
List<DmBerth> getPageList(DmBerth dpBerth);
|
|
long getTotal(DmBerth dpBerth);
|
|
void deleteByWhId(Integer whId);
|
}
|