page-machine-auth接口添加组织id

This commit is contained in:
yangsb
2024-04-17 09:10:44 +08:00
parent cc521a4a9f
commit 92ea05e58f
2 changed files with 3 additions and 0 deletions
@@ -60,6 +60,7 @@ public class MachineAuthController {
.id(e.getId())
.machineType(e.getMachineType())
.machineName(e.getName())
.organId(e.getOrganId())
.build()
).collect(Collectors.toList());
@@ -14,6 +14,8 @@ import lombok.NoArgsConstructor;
@AllArgsConstructor
@NoArgsConstructor
public class MachineAuthResp {
@Schema(description = "组织id")
private Long organId;
@Schema(description = "机台id")
private Long id;
@Schema(description = "机台名称")