package com.ruoyi.manage.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.ruoyi.manage.domain.DpShipType;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Select;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 舰船类型表 Mapper 接口
|
* </p>
|
*
|
* @author sunjiawei
|
* @since 2025-03-18
|
*/
|
@Mapper
|
public interface DpShipTypeMapper extends BaseMapper<DpShipType> {
|
|
List<DpShipType> getPageList(DpShipType dpShipType);
|
|
Integer getTotal(DpShipType dpShipType);
|
|
|
}
|