88e030b7
王彪总
init project
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
package com.java110.dto.system;
/**
* 头部信息封装
* "RuleType":"RULE0001", -- 用来区分走那个规则组
"ServiceCode": "SVC0001", -- 用来判断走那些规则
"TransactionID": "1001000101201603081234567890", -- 交易流水
"ReqTime": "20130817200202123",--请求时间
* Created by wuxw on 2017/7/23.
*/
public class TcpContRule {
private String ruleType;
private String serviceCode;
private String transactionId;
private String reqTime;
public String getRuleType() {
return ruleType;
}
public void setRuleType(String ruleType) {
this.ruleType = ruleType;
}
public String getServiceCode() {
return serviceCode;
}
public void setServiceCode(String serviceCode) {
this.serviceCode = serviceCode;
}
public String getTransactionId() {
return transactionId;
}
public void setTransactionId(String transactionId) {
this.transactionId = transactionId;
}
public String getReqTime() {
return reqTime;
}
public void setReqTime(String reqTime) {
this.reqTime = reqTime;
}
}
|