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.Builder;
|
import lombok.Data;
|
|
import java.util.Arrays;
|
import java.util.List;
|
|
/**
|
* @Author : zhoush
|
* @Date: 2025/4/30 14:19
|
* @Description:
|
*/
|
@Data
|
@Builder
|
public class S7DataGHOne {
|
|
|
@S7Variable(address = "DB99.0", type = EDataType.INT16)
|
private Short requestInTempering;
|
|
@S7Variable(address = "DB99.2", type = EDataType.INT16)
|
private Short requestTemperingId;
|
|
@S7Variable(address = "DB99.4", type = EDataType.INT16)
|
private Short placedNumber;
|
|
@S7Variable(address = "DB99.6", type = EDataType.INT16)
|
private Short responseInTempering;
|
|
@S7Variable(address = "DB99.8", type = EDataType.INT16)
|
private Short loadTemperingId;
|
|
}
|