XMTT 5 years ago
parent
commit
4e3bc378e6

+ 6 - 0
src/main/java/com/ekexiu/portal/team/TeamDao.java

@ -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;

+ 6 - 0
src/main/java/com/ekexiu/portal/team/TeamService.java

@ -187,6 +187,12 @@ public class TeamService {
187 187
        return teamDao.query(con, id);
188 188
    }
189 189
190
    @Get
191
    @Path("/qm")
192
    public List<Team> query(@JdbcConn Connection con,String[] id)throws SQLException {
193
        return teamDao.query(con, id);
194
    }
195
190 196
    @Post
191 197
    @Path("/delete")
192 198
    public void delete(@JdbcConn(true) Connection con, String id) throws SQLException {