Commit 3901bba48564d34f707f94b1be619fc1ced80e8e
1 parent
e8cc8b30
feat(tax-adopt): add tax adopt module
Showing
4 changed files
with
60 additions
and
0 deletions
pom.xml
tax-adopt/pom.xml
0 → 100644
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" | |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
| 5 | + <modelVersion>4.0.0</modelVersion> | |
| 6 | + <parent> | |
| 7 | + <groupId>com.diligrp</groupId> | |
| 8 | + <artifactId>tax-agent</artifactId> | |
| 9 | + <version>${revision}</version> | |
| 10 | + </parent> | |
| 11 | + <dependencies> | |
| 12 | + <dependency> | |
| 13 | + <groupId>com.diligrp</groupId> | |
| 14 | + <artifactId>tax-central</artifactId> | |
| 15 | + <version>${revision}</version> | |
| 16 | + </dependency> | |
| 17 | + </dependencies> | |
| 18 | + | |
| 19 | + <artifactId>tax-adopt</artifactId> | |
| 20 | + | |
| 21 | +</project> | |
| 0 | 22 | \ No newline at end of file | ... | ... |
tax-adopt/src/main/java/com/diligrp/model/ReceiveMessageCO.java
0 → 100644
| 1 | +package com.diligrp.model; | |
| 2 | + | |
| 3 | +import java.util.Map; | |
| 4 | + | |
| 5 | +/** | |
| 6 | + * @author lvqi | |
| 7 | + */ | |
| 8 | + | |
| 9 | +public class ReceiveMessageCO { | |
| 10 | + | |
| 11 | + /** | |
| 12 | + * 账套数据对接第三方系统单据id | |
| 13 | + */ | |
| 14 | + private String systemDataId; | |
| 15 | + /** | |
| 16 | + * 分组 | |
| 17 | + */ | |
| 18 | + private String group; | |
| 19 | + /** | |
| 20 | + * 实体 | |
| 21 | + */ | |
| 22 | + private String entity; | |
| 23 | + /** | |
| 24 | + * 租户账套编码 | |
| 25 | + */ | |
| 26 | + private String pipelineCode; | |
| 27 | + /** | |
| 28 | + * 消息信息 | |
| 29 | + */ | |
| 30 | + private Map<String, Object> msgBody; | |
| 31 | +} | ... | ... |