Browse Source

队列模块代码调整

guq 7 years ago
parent
commit
717b777c7d

+ 15 - 0
applications/transfers/transfers-server/src/main/java/com/usoftchina/saas/transfers/po/MessageInfo.java

@@ -24,10 +24,18 @@ public class MessageInfo implements Serializable {
      * 业务类型
      */
     private String bizType;
+
     /**
      * 业务单据ID
      */
+
     private String bizId;
+    /**
+     * 公司id
+     * @return
+     */
+    private Long companyId;
+
 
     public String getMsgId() {
         return msgId;
@@ -79,4 +87,11 @@ public class MessageInfo implements Serializable {
     public MessageInfo() {
 
     }
+    public Long getCompanyId() {
+        return companyId;
+    }
+
+    public void setCompanyId(Long companyId) {
+        this.companyId = companyId;
+    }
 }