mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-14 05:42:06 +08:00
page-machine-auth接口添加组织id
This commit is contained in:
+1
@@ -60,6 +60,7 @@ public class MachineAuthController {
|
|||||||
.id(e.getId())
|
.id(e.getId())
|
||||||
.machineType(e.getMachineType())
|
.machineType(e.getMachineType())
|
||||||
.machineName(e.getName())
|
.machineName(e.getName())
|
||||||
|
.organId(e.getOrganId())
|
||||||
.build()
|
.build()
|
||||||
).collect(Collectors.toList());
|
).collect(Collectors.toList());
|
||||||
|
|
||||||
|
|||||||
+2
@@ -14,6 +14,8 @@ import lombok.NoArgsConstructor;
|
|||||||
@AllArgsConstructor
|
@AllArgsConstructor
|
||||||
@NoArgsConstructor
|
@NoArgsConstructor
|
||||||
public class MachineAuthResp {
|
public class MachineAuthResp {
|
||||||
|
@Schema(description = "组织id")
|
||||||
|
private Long organId;
|
||||||
@Schema(description = "机台id")
|
@Schema(description = "机台id")
|
||||||
private Long id;
|
private Long id;
|
||||||
@Schema(description = "机台名称")
|
@Schema(description = "机台名称")
|
||||||
|
|||||||
Reference in New Issue
Block a user