13693261870
2025-07-02 6708810c4de34dfb9513061432d656f91d56ee3a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ruoyi.manage.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.common.core.page.TableDataInfo;
import com.ruoyi.manage.domain.DpShipType;
 
/**
 * <p>
 * 舰船类型表 服务类
 * </p>
 *
 * @author sunjiawei
 * @since 2025-03-18
 */
public interface DpShipTypeService extends IService<DpShipType> {
    TableDataInfo getPageList(DpShipType dpShipType);
}