1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.ruoyi.manage.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.ruoyi.common.core.page.TableDataInfo;
| import com.ruoyi.manage.domain.DpShipParking;
|
| import java.util.List;
|
| /**
| * <p>
| * 泊位停船信息表 服务类
| * </p>
| *
| * @author sunjiawei
| * @since 2025-03-22
| */
| public interface DpShipParkingService extends IService<DpShipParking> {
|
| TableDataInfo getPageList(DpShipParking dpShipParking);
|
| List<DpShipParking> getByWhBeId(Integer whId,Integer beId,Integer id);
|
| }
|
|