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
51
52
53
54
55
56
57
58
59
| package com.matrix.core.simpleDao;
|
| public interface DAO {
|
| /**
| * 保存对象
| * @param str
| * @param obj
| * @return
| * @throws Exception
| */
| public Object save(String str, Object obj) throws Exception;
|
| /**
| * 修改对象
| * @param str
| * @param obj
| * @return
| * @throws Exception
| */
| public Object update(String str, Object obj) throws Exception;
|
| /**
| * 删除对象
| * @param str
| * @param obj
| * @return
| * @throws Exception
| */
| public Object delete(String str, Object obj) throws Exception;
|
| /**
| * 查找对象
| * @param str
| * @param obj
| * @return
| * @throws Exception
| */
| public Object findForObject(String str, Object obj) throws Exception;
|
| /**
| * 查找对象
| * @param str
| * @param obj
| * @return
| * @throws Exception
| */
| public Object findForList(String str, Object obj) throws Exception;
|
| /**
| * 查找对象封装成Map
| * @param s
| * @param obj
| * @return
| * @throws Exception
| */
| public Object findForMap(String sql, Object obj, String key, String value) throws Exception;
|
| }
|
|