|
@@ -82,6 +82,8 @@ public class SimMsg extends BaseEntity {
|
|
|
@Excel(name = "接收报文")
|
|
|
private String receiveMsg;
|
|
|
|
|
|
+ private String receiveOriginalMsg;
|
|
|
+
|
|
|
/**
|
|
|
* 接收时间
|
|
|
*/
|
|
@@ -185,6 +187,14 @@ public class SimMsg extends BaseEntity {
|
|
|
return receiveMsg;
|
|
|
}
|
|
|
|
|
|
+ public String getReceiveOriginalMsg() {
|
|
|
+ return receiveOriginalMsg;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReceiveOriginalMsg(String receiveOriginalMsg) {
|
|
|
+ this.receiveOriginalMsg = receiveOriginalMsg;
|
|
|
+ }
|
|
|
+
|
|
|
public void setReceiveTime(Date receiveTime) {
|
|
|
this.receiveTime = receiveTime;
|
|
|
}
|
|
@@ -220,28 +230,25 @@ public class SimMsg extends BaseEntity {
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("simMsgId", getSimMsgId())
|
|
|
- .append("simId", getSimId())
|
|
|
- .append("examFaultRefId", getExamFaultRefId())
|
|
|
- .append("examCollectionType", getExamCollectionType())
|
|
|
- .append("sendMsgState", getSendMsgState())
|
|
|
- .append("priority", getPriority())
|
|
|
- .append("sendMsgType", getSendMsgType())
|
|
|
- .append("sendMsg", getSendMsg())
|
|
|
- .append("sendTime", getSendTime())
|
|
|
- .append("receiveMsg", getReceiveMsg())
|
|
|
- .append("receiveTime", getReceiveTime())
|
|
|
- .append("retryCount", getRetryCount())
|
|
|
- .append("ok", getOk())
|
|
|
- .append("errorMsg", getErrorMsg())
|
|
|
- .append("createBy", getCreateBy())
|
|
|
- .append("createTime", getCreateTime())
|
|
|
- .append("updateBy", getUpdateBy())
|
|
|
- .append("updateTime", getUpdateTime())
|
|
|
- .append("remark", getRemark())
|
|
|
+ .append("simMsgId", simMsgId)
|
|
|
+ .append("simId", simId)
|
|
|
+ .append("examFaultRefId", examFaultRefId)
|
|
|
+ .append("examCollectionType", examCollectionType)
|
|
|
+ .append("sendMsgState", sendMsgState)
|
|
|
+ .append("priority", priority)
|
|
|
+ .append("sendMsgType", sendMsgType)
|
|
|
+ .append("sendMsg", sendMsg)
|
|
|
+ .append("sendTime", sendTime)
|
|
|
+ .append("receiveMsg", receiveMsg)
|
|
|
+ .append("receiveOriginalMsg", receiveOriginalMsg)
|
|
|
+ .append("receiveTime", receiveTime)
|
|
|
+ .append("retryCount", retryCount)
|
|
|
+ .append("ok", ok)
|
|
|
+ .append("errorMsg", errorMsg)
|
|
|
.toString();
|
|
|
}
|
|
|
- // -------------------------------- tom add --------------------------------
|
|
|
+
|
|
|
+// -------------------------------- tom add --------------------------------
|
|
|
|
|
|
public SimMsg() {
|
|
|
}
|