|
@@ -5,6 +5,7 @@ import com.alibaba.fastjson.JSONObject;
|
|
|
import com.gyee.power.fitting.common.result.JsonResult;
|
|
|
import com.gyee.power.fitting.common.result.ResultCode;
|
|
|
import com.gyee.power.fitting.model.vo.AlarmTsVo;
|
|
|
+import com.gyee.power.fitting.model.vo.AlarmVo;
|
|
|
import com.gyee.power.fitting.service.IAlarmTsService;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -29,8 +30,8 @@ public class AlarmTsController {
|
|
|
* @return
|
|
|
*/
|
|
|
@GetMapping("getData")
|
|
|
- public JSONObject dataProcessTree(String superTableName, String stationid, long begin, long end){
|
|
|
- List<AlarmTsVo> result = alarmTsService.selectByWpGroup(superTableName,stationid,begin,end);
|
|
|
+ public JSONObject dataProcessTree(String superTableName, String stationid,String deviceid, long begin, long end){
|
|
|
+ List<AlarmVo> result = alarmTsService.findTagsByDeviceid(superTableName,stationid,deviceid,begin,end);
|
|
|
return JsonResult.successData(ResultCode.SUCCESS, result);
|
|
|
}
|
|
|
|