燕山石化溯源三维电子沙盘-【后端】-服务
13693261870
2023-05-18 37c298b6027352872cb72cffa254442a6aa7b2b0
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
package com.yssh.service;
 
import java.util.Date;
import java.util.List;
import java.util.Map;
 
import com.yssh.entity.*;
 
public interface ISuYuanService {
    public Integer isTableExists(String tableName);
 
    public void insertSuYuanDatas(List<SuYuan> lists, String time) throws Exception;
 
    int createNewTable(String tableName);
 
    public List<SuYuan2d> selectSuYuan2d(Date date);
 
    public List<SuYuan3d> selectSuYuan3d(String name, Date date);
 
    public Map<String, Object> selectSuYuan100(String name, Date date);
 
    public Map<String, Object> selectSuYuan200(String name, Date date);
 
    public Map<String, Object> selectSuYuan300(String name, Date date);
 
    public Map<String, Object> selectSuYuan500(String name, Date date);
 
    public List<SuYuanMonitorData> getMonitorData(String name);
 
    //public List<Temporary> temporary(String name, Date date);
 
    public int updateVocsName(Date date, String id, String vocsName);
 
    public List<Qxsh> queryQxsh(Date date);
}