81041
2019-06-24 a7cdf717e2ad9f3c7a8dcff5ecfa499e2fd372e8
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
41
42
43
44
45
46
47
48
49
50
package com.fgkj.dao;
 
import java.util.List;
 
public interface BaseDAO {
 
    
    
    public static final int  SENSOR_MAPINFO=1;
    
    public static final int  SENSOR_INF=2;
    
    public static final int  SENSOR_STATE=3;
    
    public static final int  USER_CHART=4;
    
    public static final int  CUSTOMPAGE=5;
    
    public static final int  ECHARTS_USR=6;
    
    public static final int  PROCESS_SURVEY=7;
    
    public static final int  STATIONTRAFFIC=8;
    
    public static final int  USER_INF=9;
    
    public static final int  USER_LOG=10;
    
    public static final int  VIP_USER=11;
    
    public static final int  HARD_DEV_SMS_STATE=12;
    
    public static final int  SERVER_STATE=13;
    
    public static final int  SENSOR_HISDATA=14;
    
    
    public boolean add(Object obj); // 添加
 
    public boolean update(Object obj); // 更新
 
    public boolean del(Object obj); // 删除
 
    public List searchAll(); // 查询所有
 
    public List serchByCondition(Object obj); // 条件查询
 
    public List serchByInfo(Object obj); // 模糊查询
 
}