Browse Source

配置中兴

2024年9月26日11:57:34
thing_master
lishuai 1 year ago
parent
commit
ee6db376a4
  1. 6
      modules/thing/src/main/java/com/thing/device/source/controller/IotThingSourceController.java

6
modules/thing/src/main/java/com/thing/device/source/controller/IotThingSourceController.java

@ -148,6 +148,12 @@ public class IotThingSourceController {
return new Result<List<String>>().ok(iotThingSourceService.attrGroup());
}
@GetMapping("maxSort")
@Operation(summary="最大序号")
public Result<Long> getMaxSort(@RequestParam String configType,@RequestParam Long fromId,@RequestParam Long rootId) {
return new Result<Long>().ok(iotThingSourceService.getMaxSort(configType,fromId,rootId));
}
@PostMapping("attrGroupList")
@Operation(summary="标签组")
public Result<List<IotThingSourceDTO>> attrGroupRootId(@RequestBody IotThingSourceReqDTO iotThingSourceDTO) {

Loading…
Cancel
Save