Context.java
947 Bytes
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.diligrp.tax.central.context;
import com.diligrp.tax.central.domain.BaseDocument;
import com.diligrp.tax.central.domain.BaseMapping;
import com.diligrp.tax.central.domain.BaseProxy;
import lombok.Getter;
import lombok.Setter;
@Setter
@Getter
public class Context {
/**
* 开放 ID
*/
private String thirdPartyCode;
/**
* 租户 ID
*/
private String tenantId;
/**
* 消息信息
*/
private String msgBody;
/**
* 公文
*/
private BaseDocument documentObject;
/**
* 映射对象
*/
private BaseMapping mappingObject;
/**
* 代理对象
*/
private BaseProxy proxyObject;
/**
* 系统类型
*/
private String systemType;
/**
* 文档类型
*/
private String documentType;
/**
* 错误
*/
private String error;
/**
* 成功标志
*/
private Integer status;
}