Blame view

src/com/fh/dao/DAO.java 1.07 KB
ad5081d3   孙向锦   初始化项目
1
2
  package com.fh.dao;
  /**
cb39a12d   孙向锦   更新api接口头信息
3
   * @author Elvis
ad5081d3   孙向锦   初始化项目
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
60
61
62
   * 修改时间:20151211
   */
  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;
  	
  }