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);
|
}
|