package com.yssh.service;
|
|
import java.util.List;
|
|
import com.yssh.entity.MonitorPointPosition;
|
|
public interface ICommonService {
|
|
public boolean checkTableExists(String tableName);
|
|
public void readDatData() throws Exception;
|
|
public List<MonitorPointPosition> getCheckPoints2d();
|
|
public List<MonitorPointPosition> getCheckPoints3d();
|
|
public MonitorPointPosition select2dCheckPointByName(String name);
|
|
public MonitorPointPosition select3dCheckPointByName(String name);
|
|
public MonitorPointPosition select2dCheckPointById(String id);
|
|
public MonitorPointPosition select3dCheckPointById(String id);
|
|
}
|