13693261870
2025-07-02 6708810c4de34dfb9513061432d656f91d56ee3a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.ruoyi.fuzhou.service;
 
import com.alibaba.fastjson2.JSONArray;
import com.alibaba.fastjson2.JSONObject;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.common.core.page.TableDataInfo;
import com.ruoyi.fuzhou.domain.DpEquipment;
import com.ruoyi.fuzhou.domain.vo.DpEquipmentVO;
 
import java.util.List;
 
/**
 * <p>
 *  服务类
 * </p>
 *
 * @author zhangyy
 * @since 2025-03-14
 */
public interface EquipmentService extends IService<DpEquipment> {
    List<DpEquipment> getListByType(Integer typeId);
 
    DpEquipment getEpByField(String field);
 
    TableDataInfo getPageList(DpEquipment equipment);
 
    DpEquipmentVO selectById(Integer id);
 
    List<DpEquipmentVO> getListByBeId(Integer beId);
 
    List<DpEquipmentVO> getListByWhId(Integer whId);
 
    List<DpEquipmentVO> getListByBeIdTypeId(Integer beId,List<Integer> typeIds);
}