|
|
|
@ -3,6 +3,7 @@ package com.os.ems.record.controller;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
|
|
|
|
import org.checkerframework.checker.units.qual.A;
|
|
|
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
@ -45,6 +46,17 @@ public class EmsRecordDnbInstantController extends BaseController {
|
|
|
|
|
return getDataTable(list);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询电实时数据
|
|
|
|
|
* @param emsRecordDnbInstant
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/dnbInstantList")
|
|
|
|
|
public AjaxResult dnbInstantList(EmsRecordDnbInstant emsRecordDnbInstant) {
|
|
|
|
|
List<EmsRecordDnbInstant> list = emsRecordDnbInstantService.selectDnbInstantList(emsRecordDnbInstant);
|
|
|
|
|
return success(list);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 导出电实时数据列表
|
|
|
|
|
*/
|
|
|
|
|