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