|
@ -73,11 +73,11 @@ public interface TeamDao {
|
73
|
73
|
|
74
|
74
|
@PageSelect
|
75
|
75
|
@OrderBy("ORDER BY CREATE_TIME DESC")
|
76
|
|
PageQueryResult<Team> pageQuery(Connection con, String status, @Nullable @GroupSqlColumn(handlerClass = StringHandler.class, value = {"name like ?", "org_name like ?", "subject like ?", "industry like ?"},isAnd = false) String key, @Nullable @Like String subject, @Nullable @Like String industry, @Nullable String city, int pageSize, int pageNo) throws SQLException;
|
|
76
|
PageQueryResult<Team> pageQuery(Connection con,@Nullable @In String[] status, @Nullable @GroupSqlColumn(handlerClass = StringHandler.class, value = {"name like ?", "org_name like ?", "subject like ?", "industry like ?"},isAnd = false) String key, @Nullable @Like String subject, @Nullable @Like String industry, @Nullable String city, int pageSize, int pageNo) throws SQLException;
|
77
|
77
|
|
78
|
78
|
@PageQuery
|
79
|
79
|
@OrderBy("ORDER BY SECRETARY DESC NULLS LAST, CREATE_TIME DESC")
|
80
|
|
PageQueryResult<Team> pageQuery(Connection con, String status, @SqlColumn(handlerClass = StringHandler.class, value = "id in (select id from team_pro where professor = ?)") String professor, int pageSize, int pageNo) throws SQLException;
|
|
80
|
PageQueryResult<Team> pageQuery(Connection con,@Nullable @In String[] status, @SqlColumn(handlerClass = StringHandler.class, value = "id in (select id from team_pro where professor = ?)") String professor, int pageSize, int pageNo) throws SQLException;
|
81
|
81
|
|
82
|
82
|
@Insert
|
83
|
83
|
int insert(Connection con, TeamPro teamPro) throws SQLException;
|