MessageContext.java 987 Bytes
package com.diligrp.tax.central.domain;

import lombok.Getter;
import lombok.Setter;

@Setter
@Getter
public class MessageContext {
    /**
     * 开放 ID
     */
    private String thirdPartyCode;
    /**
     * 分组
     */
    private String group;
    /**
     * 实体
     */
    private String entity;
    /**
     * 租户 ID
     */
    private Long tenantId;
    /**
     * 租户账套编码
     */
    private String pipelineCode;
    /**
     * 消息信息
     */
    private String msgBody;
    /**
     * 公文
     */
    private BaseDocument documentObject;
    /**
     * 映射对象
     */
    private BaseMapping mappingObject;
    /**
     * 代理对象
     */
    private BaseProxy proxyObject;
    /**
     * 系统类型
     */
    private String systemType;
    /**
     * 文档类型
     */
    private String documentType;
    /**
     * 错误
     */
    private String error;
    /**
     * 成功标志
     */
    private Integer status;
}