| | |
| | | package com.mes.opctask.controller; |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.mes.largenscreen.entity.DailyProductionVO; |
| | | import com.mes.largenscreen.entity.RunTime; |
| | | import com.mes.opctask.entity.EdgStorageDeviceTaskHistory; |
| | | import com.mes.opctask.entity.request.TaskHistoryRequest; |
| | | import com.mes.opctask.service.EdgStorageDeviceTaskHistoryService; |
| | | import com.mes.utils.Result; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.validation.annotation.Validated; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | @Resource |
| | | private EdgStorageDeviceTaskHistoryService edgStorageDeviceTaskHistoryService; |
| | | |
| | | /** |
| | | * 分页查询所有数据 |
| | | * |
| | | * @param page 分页对象 |
| | | * @param edgStorageDeviceTaskHistory 查询实体 |
| | | * @return 所有数据 |
| | | */ |
| | | @GetMapping |
| | | public Result selectAll(Page<EdgStorageDeviceTaskHistory> page, EdgStorageDeviceTaskHistory edgStorageDeviceTaskHistory) { |
| | | return Result.success(this.edgStorageDeviceTaskHistoryService.page(page, new QueryWrapper<>(edgStorageDeviceTaskHistory))); |
| | | } |
| | | |
| | | /** |
| | | * 通过主键查询单条数据 |
| | | * |
| | | * @param id 主键 |
| | | * @return 单条数据 |
| | | */ |
| | | @GetMapping("{id}") |
| | | public Result selectOne(@PathVariable Serializable id) { |
| | | return Result.success(this.edgStorageDeviceTaskHistoryService.getById(id)); |
| | | } |
| | | |
| | | /** |
| | | * 新增数据 |
| | | * |
| | | * @param edgStorageDeviceTaskHistory 实体对象 |
| | | * @return 新增结果 |
| | | */ |
| | | @ApiOperation(value = "查询本条线执行过的历史任务数据", notes = "查询本条线执行过的历史任务数据") |
| | | @PostMapping |
| | | public Result insert(@RequestBody EdgStorageDeviceTaskHistory edgStorageDeviceTaskHistory) { |
| | | return Result.success(this.edgStorageDeviceTaskHistoryService.save(edgStorageDeviceTaskHistory)); |
| | | public Result<Page<EdgStorageDeviceTaskHistory>> queryEdgStorageDeviceTaskHistory(@RequestBody @Validated TaskHistoryRequest request) { |
| | | return Result.success(edgStorageDeviceTaskHistoryService.queryEdgStorageDeviceTaskHistory(request)); |
| | | } |
| | | |
| | | /** |
| | | * 修改数据 |
| | | * |
| | | * @param edgStorageDeviceTaskHistory 实体对象 |
| | | * @return 修改结果 |
| | | */ |
| | | @PutMapping |
| | | public Result update(@RequestBody EdgStorageDeviceTaskHistory edgStorageDeviceTaskHistory) { |
| | | return Result.success(this.edgStorageDeviceTaskHistoryService.updateById(edgStorageDeviceTaskHistory)); |
| | | @ApiOperation(value = "查询本条线历史指定日期的日生产数据", notes = "查询本条线历史指定日期的日生产数据") |
| | | @PostMapping("/queryEdgDailyProduction") |
| | | public Result<DailyProductionVO> queryEdgDailyProduction(@RequestBody TaskHistoryRequest request) { |
| | | return Result.success(edgStorageDeviceTaskHistoryService.queryEdgDailyProduction(request)); |
| | | } |
| | | |
| | | /** |
| | | * 删除数据 |
| | | * |
| | | * @param idList 主键结合 |
| | | * @return 删除结果 |
| | | */ |
| | | @DeleteMapping |
| | | public Result delete(@RequestParam("idList") List<Long> idList) { |
| | | return Result.success(this.edgStorageDeviceTaskHistoryService.removeByIds(idList)); |
| | | @ApiOperation(value = "查询生产线运行情况", notes = "查询生产线运行情况") |
| | | @GetMapping("/queryRunTimes") |
| | | public Result<List<RunTime>> queryRunTimes(String days) { |
| | | return Result.success(edgStorageDeviceTaskHistoryService.queryRunTimes(days)); |
| | | } |
| | | |
| | | } |
| | | |