ustcyc
2025-01-07 de5d55508afd27fb2b47e6d4d6fd9984525c222c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.zhitan.meter.services;
 
import com.zhitan.meter.domain.MeterConfig;
import com.zhitan.meter.domain.MeterImplements;
import com.zhitan.meter.domain.MeterParam;
 
import java.util.List;
 
/**
 * @InterfaceName: IMeterImplementService
 * @Author: Yarry
 * @CreateTime: 2024-09-20 16-21-54
 * @Description: TODO
 * @Version: 1.0
 * @Since: JDK1.8
 */
public interface IMetersService {
 
    /**
     * 获取所有计量表数据
     * @return
     */
    List<MeterImplements> listMeterData(String meterType);
 
    /**
     * 获取点位配置数据
     * @param meterType
     * @param indexType
     * @return
     */
    List<MeterParam> listConfigurationData(String meterType, String indexType);
 
    /**
     * 获取点位code配置数据
     *
     * @param indexType
     * @return
     */
    List<MeterConfig> listConfigData(String indexType);
}