鞍钢鲅鱼圈能源管控系统后端代码
潘志宝
2025-06-16 d8a4a8ad6cd2d55b78cfe203a0c467e742297ced
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.iailab.module.ansteel.plant.service;
 
import com.iailab.module.ansteel.plant.entity.PlantConfEntity;
import com.iailab.module.ansteel.plant.vo.PlantDataVO;
 
import java.util.List;
import java.util.Map;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2025年06月15日
 */
public interface PlantConfService {
 
    List<PlantConfEntity> list(Map<String, Object> params);
 
    List<PlantDataVO> getPlantData(String businessType);
}