jialh
1 天以前 dd6687b118561100e1677e88a9c2f5842a54c531
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
package com.java110.dto.system;
 
import com.alibaba.fastjson.JSONObject;
 
/**
 * 请求报文封装
 * Created by wuxw on 2017/7/23.
 */
public class ContractRootRule {
 
 
    private TcpContRule tcpCont;
 
 
    private JSONObject svcCont;
 
 
    public TcpContRule getTcpCont() {
        return tcpCont;
    }
 
    public void setTcpCont(TcpContRule tcpCont) {
        this.tcpCont = tcpCont;
    }
 
    public JSONObject getSvcCont() {
        return svcCont;
    }
 
    public void setSvcCont(JSONObject svcCont) {
        this.svcCont = svcCont;
    }
}