package com.mes.s7.entity;
|
|
import com.github.xingshuangs.iot.common.enums.EDataType;
|
import com.github.xingshuangs.iot.protocol.s7.serializer.S7Variable;
|
import io.swagger.models.auth.In;
|
import lombok.Data;
|
|
import java.util.Arrays;
|
import java.util.List;
|
|
/**
|
* @Author : zhoush
|
* @Date: 2025/4/30 14:19
|
* @Description:
|
*/
|
@Data
|
public class S7DataDLPTwo {
|
|
|
@S7Variable(address = "DB3.3118.0", type = EDataType.BOOL)
|
private Boolean mesControl;
|
|
@S7Variable(address = "DB8.4", type = EDataType.UINT16)
|
private Integer requestMes;
|
|
@S7Variable(address = "DB8.6", type = EDataType.UINT16)
|
private Integer mesReply;
|
|
@S7Variable(address = "DB8.308", type = EDataType.UINT16)
|
private Integer from1;
|
|
@S7Variable(address = "DB8.310", type = EDataType.UINT16)
|
private Integer from2;
|
|
@S7Variable(address = "DB8.312", type = EDataType.UINT16)
|
private Integer from3;
|
|
@S7Variable(address = "DB8.314", type = EDataType.UINT16)
|
private Integer from4;
|
|
@S7Variable(address = "DB8.316", type = EDataType.UINT16)
|
private Integer from5;
|
|
@S7Variable(address = "DB8.318", type = EDataType.UINT16)
|
private Integer from6;
|
|
@S7Variable(address = "DB8.320", type = EDataType.UINT16)
|
private Integer to1;
|
|
@S7Variable(address = "DB8.322", type = EDataType.UINT16)
|
private Integer to2;
|
|
@S7Variable(address = "DB8.324", type = EDataType.UINT16)
|
private Integer to3;
|
|
@S7Variable(address = "DB8.326", type = EDataType.UINT16)
|
private Integer to4;
|
|
@S7Variable(address = "DB8.328", type = EDataType.UINT16)
|
private Integer to5;
|
|
@S7Variable(address = "DB8.330", type = EDataType.UINT16)
|
private Integer to6;
|
|
@S7Variable(address = "DB8.332", type = EDataType.UINT16)
|
private Integer state1;
|
|
@S7Variable(address = "DB8.334", type = EDataType.UINT16)
|
private Integer state2;
|
|
@S7Variable(address = "DB8.336", type = EDataType.UINT16)
|
private Integer state3;
|
|
@S7Variable(address = "DB8.338", type = EDataType.UINT16)
|
private Integer state4;
|
|
@S7Variable(address = "DB8.340", type = EDataType.UINT16)
|
private Integer state5;
|
|
@S7Variable(address = "DB8.342", type = EDataType.UINT16)
|
private Integer state6;
|
|
@S7Variable(address = "DB8.176", type = EDataType.STRING, count = 14)
|
private String id1;
|
|
@S7Variable(address = "DB8.198", type = EDataType.STRING, count = 14)
|
private String id2;
|
|
@S7Variable(address = "DB8.220", type = EDataType.STRING, count = 14)
|
private String id3;
|
|
@S7Variable(address = "DB8.242", type = EDataType.STRING, count = 14)
|
private String id4;
|
|
@S7Variable(address = "DB8.264", type = EDataType.STRING, count = 14)
|
private String id5;
|
|
@S7Variable(address = "DB8.286", type = EDataType.STRING, count = 14)
|
private String id6;
|
|
public List<Integer> getStates() {
|
return Arrays.asList(state1, state2, state3, state4, state5, state6);
|
}
|
|
public List<String> getIds() {
|
return Arrays.asList(id1, id2, id3, id4, id5, id6);
|
}
|
|
public List<Integer> getTos() {
|
return Arrays.asList(to1, to2, to3, to4, to5, to6);
|
}
|
|
public List<Integer> getFroms() {
|
return Arrays.asList(from1, from2, from3, from4, from5, from6);
|
}
|
|
}
|