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 S7DataGHTwo {
|
|
|
@S7Variable(address = "DB110.80", type = EDataType.INT16)
|
private Short mesControl;
|
|
@S7Variable(address = "DB110.80", type = EDataType.INT16)
|
private Short requestMes;
|
|
@S7Variable(address = "DB110.34", type = EDataType.STRING,count = 10)
|
private Short MesReply;
|
|
@S7Variable(address = "DB110.82", type = EDataType.STRING,count = 10)
|
private Short From1;
|
|
}
|