1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.iailab.module.ansteel.coking.service;
|
| import com.iailab.module.ansteel.coking.entity.CokingOverviewIndEntity;
|
| import java.util.List;
| import java.util.Map;
|
| /**
| * @description:
| * @author: dzd
| * @date: 2025/4/26 10:52
| **/
| public interface CokingOverviewIndService {
|
| List<CokingOverviewIndEntity> list(Map<String, Object> params);
|
| void save(List<CokingOverviewIndEntity> entityList);
|
| void deleteByProcessType(String processType, String clock);
| }
|
|