|
|
@@ -191,6 +191,15 @@ public class IotOperationMeetingController {
|
|
|
return success(iotOperationMeeting);
|
|
|
}
|
|
|
|
|
|
+ @GetMapping("/availableQueryPeriods")
|
|
|
+ @Operation(summary = "石油技术查询所有公司的会议记录列表 查询可供查询的期次 下拉列表")
|
|
|
+ @PreAuthorize("@ss.hasPermission('pms:iot-operation-meeting:query')")
|
|
|
+ public CommonResult<Set<String>> availableQueryPeriods() {
|
|
|
+ // 查询所有公司的线上运营会议期次 下拉列表 数据格式 2026-第8期
|
|
|
+ Set<String> availablePeriods = iotOperationMeetingService.availableQueryPeriods();
|
|
|
+ return success(availablePeriods);
|
|
|
+ }
|
|
|
+
|
|
|
@GetMapping("/cachedProjects")
|
|
|
@Operation(summary = "查询当前公司填写过的项目名称 缓存项目名称")
|
|
|
@PreAuthorize("@ss.hasPermission('pms:iot-operation-meeting:query')")
|