|
@@ -38,7 +38,6 @@ public class TDashboarddayelecController extends BaseController
|
|
|
/**
|
|
|
* 查询电厂大屏每日0:00抓取数据列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('aspen:dashboarddayelec:list')")
|
|
|
@GetMapping("/list")
|
|
|
public TableDataInfo list(TDashboarddayelec tDashboarddayelec)
|
|
|
{
|
|
@@ -50,7 +49,6 @@ public class TDashboarddayelecController extends BaseController
|
|
|
/**
|
|
|
* 导出电厂大屏每日0:00抓取数据列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('aspen:dashboarddayelec:export')")
|
|
|
@Log(title = "电厂大屏每日0:00抓取数据", businessType = BusinessType.EXPORT)
|
|
|
@GetMapping("/export")
|
|
|
public AjaxResult export(TDashboarddayelec tDashboarddayelec)
|
|
@@ -63,7 +61,6 @@ public class TDashboarddayelecController extends BaseController
|
|
|
/**
|
|
|
* 获取电厂大屏每日0:00抓取数据详细信息
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('aspen:dashboarddayelec:query')")
|
|
|
@GetMapping(value = "/{id}")
|
|
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
|
|
{
|
|
@@ -73,7 +70,6 @@ public class TDashboarddayelecController extends BaseController
|
|
|
/**
|
|
|
* 新增电厂大屏每日0:00抓取数据
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('aspen:dashboarddayelec:add')")
|
|
|
@Log(title = "电厂大屏每日0:00抓取数据", businessType = BusinessType.INSERT)
|
|
|
@PostMapping
|
|
|
public AjaxResult add(@RequestBody TDashboarddayelec tDashboarddayelec)
|
|
@@ -84,7 +80,6 @@ public class TDashboarddayelecController extends BaseController
|
|
|
/**
|
|
|
* 修改电厂大屏每日0:00抓取数据
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('aspen:dashboarddayelec:edit')")
|
|
|
@Log(title = "电厂大屏每日0:00抓取数据", businessType = BusinessType.UPDATE)
|
|
|
@PutMapping
|
|
|
public AjaxResult edit(@RequestBody TDashboarddayelec tDashboarddayelec)
|
|
@@ -95,7 +90,6 @@ public class TDashboarddayelecController extends BaseController
|
|
|
/**
|
|
|
* 删除电厂大屏每日0:00抓取数据
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('aspen:dashboarddayelec:remove')")
|
|
|
@Log(title = "电厂大屏每日0:00抓取数据", businessType = BusinessType.DELETE)
|
|
|
@DeleteMapping("/{ids}")
|
|
|
public AjaxResult remove(@PathVariable Long[] ids)
|
|
@@ -106,7 +100,6 @@ public class TDashboarddayelecController extends BaseController
|
|
|
/**
|
|
|
* 查询最后一条dashboard抓取数据
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('aspen:dashboardelecdata:query')")
|
|
|
@GetMapping("/selectLast")
|
|
|
public AjaxResult selectLast(TDashboarddayelec tDashboarddayelec)
|
|
|
{
|
|
@@ -117,7 +110,6 @@ public class TDashboarddayelecController extends BaseController
|
|
|
/**
|
|
|
* 查询最近31条DASHBOARD每日抓取数据列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('aspen:dashboardday:list')")
|
|
|
@GetMapping("/month")
|
|
|
public AjaxResult selectMonth(TDashboarddayelec tDashboarddayelec)
|
|
|
{
|
|
@@ -128,7 +120,6 @@ public class TDashboarddayelecController extends BaseController
|
|
|
/**
|
|
|
* 查询最近一周DASHBOARD每日抓取数据列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('aspen:dashboardday:list')")
|
|
|
@GetMapping("/week")
|
|
|
public AjaxResult selectWeek(TDashboarddayelec tDashboarddayelec)
|
|
|
{
|
|
@@ -139,7 +130,6 @@ public class TDashboarddayelecController extends BaseController
|
|
|
/**
|
|
|
* 查询最近49天DASHBOARD每日抓取数据列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('aspen:dashboardday:list')")
|
|
|
@GetMapping("/fiftyday")
|
|
|
public AjaxResult selecctfiftyday(TDashboarddayelec tDashboarddayelec)
|
|
|
{
|