|
@@ -36,7 +36,6 @@ public class TElecdashboardDayController extends BaseController
|
|
/**
|
|
/**
|
|
* 查询日期最靠前的30条电厂大屏每日数据
|
|
* 查询日期最靠前的30条电厂大屏每日数据
|
|
*/
|
|
*/
|
|
- @PreAuthorize("@ss.hasPermi('aspen:day:list')")
|
|
|
|
@GetMapping("/listLatest30")
|
|
@GetMapping("/listLatest30")
|
|
public TableDataInfo listLatest30()
|
|
public TableDataInfo listLatest30()
|
|
{
|
|
{
|
|
@@ -48,7 +47,6 @@ public class TElecdashboardDayController extends BaseController
|
|
/**
|
|
/**
|
|
* 查询日期最靠前的7条电厂大屏每日数据
|
|
* 查询日期最靠前的7条电厂大屏每日数据
|
|
*/
|
|
*/
|
|
- @PreAuthorize("@ss.hasPermi('aspen:day:list')")
|
|
|
|
@GetMapping("/listLatest7")
|
|
@GetMapping("/listLatest7")
|
|
public TableDataInfo listLatest7()
|
|
public TableDataInfo listLatest7()
|
|
{
|
|
{
|
|
@@ -60,7 +58,6 @@ public class TElecdashboardDayController extends BaseController
|
|
/**
|
|
/**
|
|
* 查询电厂大屏每日数据列表
|
|
* 查询电厂大屏每日数据列表
|
|
*/
|
|
*/
|
|
- @PreAuthorize("@ss.hasPermi('aspen:day:list')")
|
|
|
|
@GetMapping("/list")
|
|
@GetMapping("/list")
|
|
public TableDataInfo list(TElecdashboardDay tElecdashboardDay)
|
|
public TableDataInfo list(TElecdashboardDay tElecdashboardDay)
|
|
{
|
|
{
|
|
@@ -72,7 +69,6 @@ public class TElecdashboardDayController extends BaseController
|
|
/**
|
|
/**
|
|
* 导出电厂大屏每日数据列表
|
|
* 导出电厂大屏每日数据列表
|
|
*/
|
|
*/
|
|
- @PreAuthorize("@ss.hasPermi('aspen:day:export')")
|
|
|
|
@Log(title = "电厂大屏每日数据", businessType = BusinessType.EXPORT)
|
|
@Log(title = "电厂大屏每日数据", businessType = BusinessType.EXPORT)
|
|
@GetMapping("/export")
|
|
@GetMapping("/export")
|
|
public AjaxResult export(TElecdashboardDay tElecdashboardDay)
|
|
public AjaxResult export(TElecdashboardDay tElecdashboardDay)
|
|
@@ -85,7 +81,6 @@ public class TElecdashboardDayController extends BaseController
|
|
/**
|
|
/**
|
|
* 获取电厂大屏每日数据详细信息
|
|
* 获取电厂大屏每日数据详细信息
|
|
*/
|
|
*/
|
|
- @PreAuthorize("@ss.hasPermi('aspen:day:query')")
|
|
|
|
@GetMapping(value = "/{id}")
|
|
@GetMapping(value = "/{id}")
|
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
|
{
|
|
{
|
|
@@ -95,7 +90,6 @@ public class TElecdashboardDayController extends BaseController
|
|
/**
|
|
/**
|
|
* 新增电厂大屏每日数据
|
|
* 新增电厂大屏每日数据
|
|
*/
|
|
*/
|
|
- @PreAuthorize("@ss.hasPermi('aspen:day:add')")
|
|
|
|
@Log(title = "电厂大屏每日数据", businessType = BusinessType.INSERT)
|
|
@Log(title = "电厂大屏每日数据", businessType = BusinessType.INSERT)
|
|
@PostMapping
|
|
@PostMapping
|
|
public AjaxResult add(@RequestBody TElecdashboardDay tElecdashboardDay)
|
|
public AjaxResult add(@RequestBody TElecdashboardDay tElecdashboardDay)
|
|
@@ -106,7 +100,6 @@ public class TElecdashboardDayController extends BaseController
|
|
/**
|
|
/**
|
|
* 修改电厂大屏每日数据
|
|
* 修改电厂大屏每日数据
|
|
*/
|
|
*/
|
|
- @PreAuthorize("@ss.hasPermi('aspen:day:edit')")
|
|
|
|
@Log(title = "电厂大屏每日数据", businessType = BusinessType.UPDATE)
|
|
@Log(title = "电厂大屏每日数据", businessType = BusinessType.UPDATE)
|
|
@PutMapping
|
|
@PutMapping
|
|
public AjaxResult edit(@RequestBody TElecdashboardDay tElecdashboardDay)
|
|
public AjaxResult edit(@RequestBody TElecdashboardDay tElecdashboardDay)
|
|
@@ -117,7 +110,6 @@ public class TElecdashboardDayController extends BaseController
|
|
/**
|
|
/**
|
|
* 删除电厂大屏每日数据
|
|
* 删除电厂大屏每日数据
|
|
*/
|
|
*/
|
|
- @PreAuthorize("@ss.hasPermi('aspen:day:remove')")
|
|
|
|
@Log(title = "电厂大屏每日数据", businessType = BusinessType.DELETE)
|
|
@Log(title = "电厂大屏每日数据", businessType = BusinessType.DELETE)
|
|
@DeleteMapping("/{ids}")
|
|
@DeleteMapping("/{ids}")
|
|
public AjaxResult remove(@PathVariable Long[] ids)
|
|
public AjaxResult remove(@PathVariable Long[] ids)
|