1
2
3
4
5
6
7
8 package org.asyrinx.joey.spring.dao;
9
10 import java.sql.Time;
11 import java.sql.Timestamp;
12 import java.util.Date;
13 import java.util.List;
14
15 import org.asyrinx.brownie.jdbc.util.JdbcServerService;
16 import org.asyrinx.joey.om.SearchCondition;
17
18 /***
19 * @author akima
20 */
21 public interface JoeyBaseDao {
22
23 public List select(SearchCondition condition);
24
25 public JdbcServerService getJdbcServerService();
26
27 public Date getCurrentDate();
28 public Time getCurrentTime();
29 public Timestamp getCurrentTimestamp();
30 public Date getCurrentTimestampAsDate();
31 }