1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.mes.s7.entity;
|
| import com.github.xingshuangs.iot.common.enums.EDataType;
| import com.github.xingshuangs.iot.protocol.s7.serializer.S7Variable;
| import lombok.Data;
|
| import java.util.Arrays;
| import java.util.List;
|
| /**
| * @Author : zhoush
| * @Date: 2025/4/30 14:19
| * @Description:
| */
| @Data
| public class S7DataZKExtra {
|
| @S7Variable(address = "DB20.0.0", type = EDataType.BOOL)
| private Boolean isFree;
|
| @S7Variable(address = "DB20.0.1", type = EDataType.BOOL)
| private Boolean isFree03;
|
| }
|
|