Bladeren bron

更新!

TRX 1 jaar geleden
bovenliggende
commit
fad84741a8

+ 2 - 2
OneCardIotServer/src/main/java/com/zhongshu/iot/server/core/controller/devices/DeviceDataController.java

@@ -29,14 +29,14 @@ import org.springframework.web.bind.annotation.RestController;
 @RequestMapping("/deviceData")
 @RestController
 @Validated
-@Tag(name = "设备数据")
+@Tag(name = "物模型/设备属性值数据")
 public class DeviceDataController {
 
     @Autowired
     private IotDeviceDataService iotDeviceDataService;
 
     @ResourceAuth(value = "user", type = AuthType.User)
-    @Operation(summary = "设备列表(所有的)-分页查询")
+    @Operation(summary = "数据列表(所有的)-分页查询")
     @RequestMapping(value = {"page"}, method = {RequestMethod.POST})
     public ResultContent<Page<IotDeviceDataModel>> page(
             @Parameter(hidden = true) @PageableDefault(page = 0, size = 10) Pageable pageable,