|
|
|
@ -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) { |
|
|
|
|