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 java.math.BigDecimal;
| 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);
|
| Map<String, BigDecimal> getPlantData(String businessType);
| }
|
|