|
@ -18,12 +18,14 @@ import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
|
18
|
18
|
import org.jfw.apt.orm.annotation.dao.method.operator.LimitQuery;
|
19
|
19
|
import org.jfw.apt.orm.annotation.dao.method.operator.PageQuery;
|
20
|
20
|
import org.jfw.apt.orm.annotation.dao.method.operator.PageSelect;
|
|
21
|
import org.jfw.apt.orm.annotation.dao.method.operator.QueryList;
|
21
|
22
|
import org.jfw.apt.orm.annotation.dao.method.operator.QueryOne;
|
22
|
23
|
import org.jfw.apt.orm.annotation.dao.method.operator.QueryVal;
|
23
|
24
|
import org.jfw.apt.orm.annotation.dao.method.operator.SelectList;
|
24
|
25
|
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
|
25
|
26
|
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
|
26
|
27
|
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
|
|
28
|
import org.jfw.apt.orm.annotation.dao.param.In;
|
27
|
29
|
import org.jfw.apt.orm.annotation.dao.param.Like;
|
28
|
30
|
import org.jfw.apt.orm.annotation.dao.param.Set;
|
29
|
31
|
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
|
|
@ -219,5 +221,10 @@ public abstract class OrgDao {
|
219
|
221
|
@Select(Organization.class)
|
220
|
222
|
@Where("IS_JOIN ='1'")
|
221
|
223
|
public abstract PageQueryResult<EditOrganization> query(Connection con, int pageSize, int pageNo) throws SQLException;
|
|
224
|
|
|
225
|
@QueryList
|
|
226
|
@From(Organization.class)
|
|
227
|
@Select(Organization.class)
|
|
228
|
public abstract List<EditOrganization> query(Connection con,@In String[] id) throws SQLException;
|
222
|
229
|
|
223
|
230
|
}
|