| | |
| | | package com.mes.device.vo; |
| | | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Builder; |
| | | import lombok.Data; |
| | |
| | | @Builder |
| | | @NoArgsConstructor |
| | | @AllArgsConstructor |
| | | @Schema(name = "DevicePlcOperationResult", description = "PLC 操作结果") |
| | | @ApiModel(value = "DevicePlcOperationResult", description = "PLC 操作结果") |
| | | public static class OperationResult implements Serializable { |
| | | private Long deviceId; |
| | | private String deviceName; |
| | |
| | | @Builder |
| | | @NoArgsConstructor |
| | | @AllArgsConstructor |
| | | @Schema(name = "DevicePlcStatus", description = "PLC 状态数据") |
| | | @ApiModel(value = "DevicePlcStatus", description = "PLC 状态数据") |
| | | public static class StatusInfo implements Serializable { |
| | | private Long deviceId; |
| | | private String deviceName; |