zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
package com.codingapi.tm.netty.model;
 
import com.alibaba.fastjson.JSONObject;
import com.codingapi.tm.model.ChannelSender;
import com.lorne.core.framework.model.JsonModel;
 
/**
 * Created by lorne on 2017/6/7.
 */
public class TxInfo extends JsonModel {
 
    /**
     * 任务唯一标示
     */
    private String kid;
 
    /**
     * 模块管道名称(netty管道名称)
     */
    private String channelAddress;
 
    /**
     * 是否通知成功
     */
    private int notify;
 
    /**
     * 0 不组合
     * 1 组合
     */
    private int isGroup;
 
    /**
     * tm识别标示
     */
    private String address;
 
    /**
     * tx识别标示
     */
    private String uniqueKey;
 
 
    /**
     * 管道发送数据
     */
    private ChannelSender channel;
 
 
    /**
     * 业务方法名称
     */
    private String methodStr;
 
    /**
     * 模块名称
     */
    private String model;
 
    /**
     * 模块地址
     */
    private String modelIpAddress;
 
    /**
     * 是否提交(临时数据)
     */
    private int isCommit;
 
    public int getIsCommit() {
        return isCommit;
    }
 
    public void setIsCommit(int isCommit) {
        this.isCommit = isCommit;
    }
 
    public String getMethodStr() {
        return methodStr;
    }
 
    public void setMethodStr(String methodStr) {
        this.methodStr = methodStr;
    }
 
    public String getModel() {
        return model;
    }
 
    public void setModel(String model) {
        this.model = model;
    }
 
    public String getModelIpAddress() {
        return modelIpAddress;
    }
 
    public void setModelIpAddress(String modelIpAddress) {
        this.modelIpAddress = modelIpAddress;
    }
 
    public String getKid() {
        return kid;
    }
 
    public void setKid(String kid) {
        this.kid = kid;
    }
 
    public ChannelSender getChannel() {
        return channel;
    }
 
    public void setChannel(ChannelSender channel) {
        this.channel = channel;
    }
 
    public String getChannelAddress() {
        return channelAddress;
    }
 
    public void setChannelAddress(String channelAddress) {
        this.channelAddress = channelAddress;
    }
 
    public int getNotify() {
        return notify;
    }
 
    public void setNotify(int notify) {
        this.notify = notify;
    }
 
    public int getIsGroup() {
        return isGroup;
    }
 
    public void setIsGroup(int isGroup) {
        this.isGroup = isGroup;
    }
 
    public String getAddress() {
        return address;
    }
 
    public void setAddress(String address) {
        this.address = address;
    }
 
    public String getUniqueKey() {
        return uniqueKey;
    }
 
    public void setUniqueKey(String uniqueKey) {
        this.uniqueKey = uniqueKey;
    }
 
    @Override
    public String toString() {
        JSONObject jsonObject = new JSONObject();
        jsonObject.put("kid",getKid());
        jsonObject.put("channelAddress", getChannelAddress());
        jsonObject.put("notify",getNotify());
        jsonObject.put("isGroup",getIsGroup());
        jsonObject.put("address",getAddress());
        jsonObject.put("uniqueKey",getUniqueKey());
 
        jsonObject.put("model", getModel());
        jsonObject.put("modelIpAddress", getModelIpAddress());
        jsonObject.put("methodStr", getMethodStr());
 
        return jsonObject.toString();
    }
}