ZengTao
2025-05-22 b4ff04d7dd22f0e48bf386cd422e885aef08fed7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.mes.s7.entity;
 
import com.github.xingshuangs.iot.protocol.common.enums.EDataType;
import com.github.xingshuangs.iot.protocol.s7.serializer.S7Variable;
import lombok.Data;
 
/**
 * @Author : zhoush
 * @Date: 2025/4/30 14:19
 * @Description:
 */
@Data
public class S7DataWLExtra {
 
    @S7Variable(address = "DB49.126", type = EDataType.INT16)
    private Short d06SlotState;
 
}