|
|
@@ -38,9 +38,6 @@ public class IsJobTicketController extends BaseController {
|
|
|
private IIsJobTicketService isJobTicketService;
|
|
|
|
|
|
|
|
|
- /**
|
|
|
- * 查询作业票分页
|
|
|
- */
|
|
|
@ApiOperation("查询作业票-分页")
|
|
|
@Parameters({
|
|
|
@Parameter(name = "page", description = "Page"),
|
|
|
@@ -52,6 +49,13 @@ public class IsJobTicketController extends BaseController {
|
|
|
return CommonResult.success(isJobTicketService.getIsJobTicketPage(page, dto));
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation("查询作业票-正在进行中的作业票列表")
|
|
|
+ @PreAuthorize("@ss.hasPermi('mes:job:jobm:query')")
|
|
|
+ @GetMapping("/getWorkstationTicketList")
|
|
|
+ public CommonResult<List<IsJobTicket>> getWorkstationTicketList() {
|
|
|
+ return CommonResult.success(isJobTicketService.getWorkstationTicketList());
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 导出作业票列表
|
|
|
*/
|