|
|
|
|
6
|
|
6
|
|
7
|
import org.jfw.apt.annotation.Nullable;
|
7
|
import org.jfw.apt.annotation.Nullable;
|
8
|
import org.jfw.apt.orm.annotation.dao.DAO;
|
8
|
import org.jfw.apt.orm.annotation.dao.DAO;
|
|
|
9
|
import org.jfw.apt.orm.annotation.dao.Dynamic;
|
9
|
import org.jfw.apt.orm.annotation.dao.method.From;
|
10
|
import org.jfw.apt.orm.annotation.dao.method.From;
|
10
|
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
|
11
|
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
|
11
|
import org.jfw.apt.orm.annotation.dao.method.operator.DeleteWith;
|
12
|
import org.jfw.apt.orm.annotation.dao.method.operator.DeleteWith;
|
|
|
|
|
24
|
public abstract int insert(Connection con, Article article) throws SQLException;
|
25
|
public abstract int insert(Connection con, Article article) throws SQLException;
|
25
|
|
26
|
|
26
|
@Update
|
27
|
@Update
|
|
|
28
|
@Dynamic
|
27
|
public abstract int update(Connection con, Article article) throws SQLException;
|
29
|
public abstract int update(Connection con, Article article) throws SQLException;
|
28
|
|
30
|
|
29
|
@UpdateWith
|
31
|
@UpdateWith
|