|
@ -6,11 +6,13 @@ import org.jfw.apt.orm.annotation.dao.Column;
|
6
|
6
|
import org.jfw.apt.orm.annotation.dao.DAO;
|
7
|
7
|
import org.jfw.apt.orm.annotation.dao.method.Exclude;
|
8
|
8
|
import org.jfw.apt.orm.annotation.dao.method.From;
|
|
9
|
import org.jfw.apt.orm.annotation.dao.method.LimitColumn;
|
9
|
10
|
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
|
10
|
11
|
import org.jfw.apt.orm.annotation.dao.method.SetSentence;
|
11
|
12
|
import org.jfw.apt.orm.annotation.dao.method.Where;
|
12
|
13
|
import org.jfw.apt.orm.annotation.dao.method.operator.DeleteWith;
|
13
|
14
|
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
|
|
15
|
import org.jfw.apt.orm.annotation.dao.method.operator.LimitSelect;
|
14
|
16
|
import org.jfw.apt.orm.annotation.dao.method.operator.PageQuery;
|
15
|
17
|
import org.jfw.apt.orm.annotation.dao.method.operator.PageSelect;
|
16
|
18
|
import org.jfw.apt.orm.annotation.dao.method.operator.QueryVal;
|
|
@ -150,4 +152,10 @@ public interface TeamDao {
|
150
|
152
|
@Column(value = "COUNT(1)", handlerClass = LongHandler.class)
|
151
|
153
|
@From(TeamPro.class)
|
152
|
154
|
long countPro(Connection con, String id) throws SQLException;
|
|
155
|
|
|
156
|
@LimitSelect
|
|
157
|
@Where("STATE='3'")
|
|
158
|
@OrderBy(cols = { @LimitColumn(value = "createTime", asc = false),
|
|
159
|
@LimitColumn(value = "id", asc = false) }, value = "")
|
|
160
|
List<Team> indexSearch(Connection con, @Nullable @GroupSqlColumn(handlerClass = StringHandler.class, value = {"name like ?", "org_name like ?", "subject like ?", "industry like ?"},isAnd = false) String key, String createTime, String id, int rows) throws SQLException;
|
153
|
161
|
}
|