ReceiveMessageCO.java
766 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
package com.diligrp.tax.adopt.model;
import com.diligrp.tax.central.type.SystemType;
import lombok.Data;
import java.util.Map;
/**
* @author lvqi
*/
@Data
public class ReceiveMessageCO {
/**
* 账套数据对接第三方系统单据id
*/
private String systemDataId;
/**
* 分组
*/
private String group;
/**
* 实体
*/
private String entity;
/**
* 租户账套编码
*/
private String pipelineCode;
/**
* 业务代码
*/
private String businessCode;
/**
* 文档类型
*/
private String documentType;
/**
* 消息信息
*/
private Map<String, Object> msgBody;
/**
* 系统类型
*/
private String systemType;
}