|
@ -1,9 +1,5 @@
|
1
|
1
|
package com.ekexiu.project.bridge.alarm;
|
2
|
2
|
|
3
|
|
import java.sql.Connection;
|
4
|
|
import java.sql.SQLException;
|
5
|
|
import java.util.List;
|
6
|
|
|
7
|
3
|
import org.jfw.apt.orm.annotation.dao.Batch;
|
8
|
4
|
import org.jfw.apt.orm.annotation.dao.DAO;
|
9
|
5
|
import org.jfw.apt.orm.annotation.dao.method.From;
|
|
@ -14,7 +10,12 @@ import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
|
14
|
10
|
import org.jfw.apt.orm.annotation.dao.method.operator.PageSelect;
|
15
|
11
|
import org.jfw.apt.orm.annotation.dao.method.operator.SelectList;
|
16
|
12
|
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
|
|
13
|
import org.jfw.apt.orm.annotation.dao.param.In;
|
17
|
14
|
import org.jfw.util.PageQueryResult;
|
|
15
|
|
|
16
|
import java.sql.Connection;
|
|
17
|
import java.sql.SQLException;
|
|
18
|
import java.util.List;
|
18
|
19
|
@DAO
|
19
|
20
|
public interface AlarmDao {
|
20
|
21
|
@Insert
|
|
@ -27,8 +28,8 @@ public interface AlarmDao {
|
27
|
28
|
int[] insertAlarmDataItems(Connection con, List<AlarmDataItem> items)throws SQLException;
|
28
|
29
|
|
29
|
30
|
@PageSelect
|
30
|
|
@OrderBy("ORDER BY ALARM_TIME DESC,AID DESC")
|
31
|
|
PageQueryResult<AlarmMsg> queryAlarmMsg(Connection con,String uid,int pageSize,int pageNo)throws SQLException;
|
|
31
|
@OrderBy("ORDER BY ALARM_TIME DESC,SERVER DESC,AID DESC")
|
|
32
|
PageQueryResult<AlarmMsg> queryAlarmMsg(Connection con, @In String[] server,String uid, int pageSize, int pageNo)throws SQLException;
|
32
|
33
|
|
33
|
34
|
|
34
|
35
|
@UpdateWith
|