17 lines
347 B
Java
17 lines
347 B
Java
|
|
package com.njcn.influx.service;
|
||
|
|
|
||
|
|
import com.njcn.influx.pojo.dto.StatisticalDataDTO;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Description:
|
||
|
|
* Date: 2023/6/2 16:00【需求编号】
|
||
|
|
*
|
||
|
|
* @author clam
|
||
|
|
* @version V1.0.0
|
||
|
|
*/
|
||
|
|
public interface CommonService {
|
||
|
|
List<StatisticalDataDTO> commonquery(String lineId, String tableName, String columnName);
|
||
|
|
}
|