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; /** *

* 服务类 *

* * @author zhangyy * @since 2025-03-14 */ public interface EquipmentService extends IService { List getListByType(Integer typeId); DpEquipment getEpByField(String field); TableDataInfo getPageList(DpEquipment equipment); DpEquipmentVO selectById(Integer id); List getListByBeId(Integer beId); List getListByWhId(Integer whId); List getListByBeIdTypeId(Integer beId,List typeIds); }