1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.mes.connect.entity;
|
| import lombok.Data;
|
| @Data
| public class ReturnValue {
| private String codeId;
| private String address;
| private boolean fixed;
| private String value;
| private String plcDataType;
| private int length;
| }
|
|