|
@ -14,9 +14,11 @@ import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
|
14
|
14
|
import org.jfw.apt.orm.annotation.dao.method.operator.PageQuery;
|
15
|
15
|
import org.jfw.apt.orm.annotation.dao.method.operator.PageSelect;
|
16
|
16
|
import org.jfw.apt.orm.annotation.dao.method.operator.QueryVal;
|
|
17
|
import org.jfw.apt.orm.annotation.dao.method.operator.SelectList;
|
17
|
18
|
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
|
18
|
19
|
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
|
19
|
20
|
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
|
|
21
|
import org.jfw.apt.orm.annotation.dao.param.In;
|
20
|
22
|
import org.jfw.apt.orm.annotation.dao.param.Like;
|
21
|
23
|
import org.jfw.apt.orm.annotation.dao.param.Set;
|
22
|
24
|
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
|
|
@ -26,6 +28,7 @@ import org.jfw.util.PageQueryResult;
|
26
|
28
|
|
27
|
29
|
import java.sql.Connection;
|
28
|
30
|
import java.sql.SQLException;
|
|
31
|
import java.util.List;
|
29
|
32
|
|
30
|
33
|
|
31
|
34
|
* Created by TT on 2019/7/8.
|
|
@ -64,6 +67,9 @@ public interface TeamDao {
|
64
|
67
|
@Nullable
|
65
|
68
|
Team query(Connection con, String id) throws SQLException;
|
66
|
69
|
|
|
70
|
@SelectList
|
|
71
|
List<Team> query(Connection con, @In String[] id) throws SQLException;
|
|
72
|
|
67
|
73
|
@PageSelect
|
68
|
74
|
@OrderBy("ORDER BY CREATE_TIME DESC")
|
69
|
75
|
PageQueryResult<Team> pageQuery(Connection con, String status, @Nullable @SqlColumn(handlerClass = StringHandler.class, value = {"name like ?", "orgName like ?", "subject like ?", "industry like ?"}) String key, @Nullable @Like String subject, @Nullable @Like String industry, @Nullable String city, int pageSize, int pageNo) throws SQLException;
|