package com.java110.dto.system;
|
|
/**
|
* 报文 头部信息
|
* Created by wuxw on 2017/2/27.
|
*/
|
public class TcpCont {
|
private String transactionId; //请求流水
|
|
private String serviceCode; //服务编码
|
|
private String reqTime; //请求时间
|
|
private String resTime; //返回时间
|
|
private String resultCode; //返回编码
|
|
private String resultMsg; //返回描述
|
|
public String getTransactionId() {
|
return transactionId;
|
}
|
|
public void setTransactionId(String transactionId) {
|
this.transactionId = transactionId;
|
}
|
|
public String getServiceCode() {
|
return serviceCode;
|
}
|
|
public void setServiceCode(String serviceCode) {
|
this.serviceCode = serviceCode;
|
}
|
|
public String getReqTime() {
|
return reqTime;
|
}
|
|
public void setReqTime(String reqTime) {
|
this.reqTime = reqTime;
|
}
|
|
public String getResTime() {
|
return resTime;
|
}
|
|
public void setResTime(String resTime) {
|
this.resTime = resTime;
|
}
|
|
public String getResultCode() {
|
return resultCode;
|
}
|
|
public void setResultCode(String resultCode) {
|
this.resultCode = resultCode;
|
}
|
|
public String getResultMsg() {
|
return resultMsg;
|
}
|
|
public void setResultMsg(String resultMsg) {
|
this.resultMsg = resultMsg;
|
}
|
}
|