|
|
|
|
4
|
import org.jfw.apt.annotation.Nullable;
|
4
|
import org.jfw.apt.annotation.Nullable;
|
5
|
import org.jfw.apt.orm.annotation.dao.Column;
|
5
|
import org.jfw.apt.orm.annotation.dao.Column;
|
6
|
import org.jfw.apt.orm.annotation.dao.DAO;
|
6
|
import org.jfw.apt.orm.annotation.dao.DAO;
|
|
|
7
|
import org.jfw.apt.orm.annotation.dao.method.Exclude;
|
7
|
import org.jfw.apt.orm.annotation.dao.method.From;
|
8
|
import org.jfw.apt.orm.annotation.dao.method.From;
|
8
|
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
|
9
|
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
|
9
|
import org.jfw.apt.orm.annotation.dao.method.SetSentence;
|
10
|
import org.jfw.apt.orm.annotation.dao.method.SetSentence;
|
|
|
|
|
36
|
int insert(Connection con, Team team) throws SQLException;
|
37
|
int insert(Connection con, Team team) throws SQLException;
|
37
|
|
38
|
|
38
|
@Update
|
39
|
@Update
|
|
|
40
|
@Exclude({"secretary","chief","status","certify"})
|
39
|
int update(Connection con, Team team) throws SQLException;
|
41
|
int update(Connection con, Team team) throws SQLException;
|
40
|
|
42
|
|
41
|
@UpdateWith
|
43
|
@UpdateWith
|