parent
fc0eeb9abc
commit
34d2fa0ec8
@ -0,0 +1,34 @@ |
|||||||
|
package com.jianshui.web.controller.platform; |
||||||
|
|
||||||
|
import com.jianshui.common.core.controller.BaseController; |
||||||
|
import io.swagger.annotations.Api; |
||||||
|
import org.springframework.web.bind.annotation.RequestMapping; |
||||||
|
import org.springframework.web.bind.annotation.RestController; |
||||||
|
|
||||||
|
/** |
||||||
|
* 发票录入 |
||||||
|
* |
||||||
|
*/ |
||||||
|
@Api(tags = "测试接口文档",value = "ceceshi") |
||||||
|
@RestController |
||||||
|
@RequestMapping("/platForm/invoice") |
||||||
|
public class InvoiceAddController extends BaseController { |
||||||
|
|
||||||
|
//发票录入
|
||||||
|
|
||||||
|
/** |
||||||
|
* 接口权限走登录验证,token |
||||||
|
* 发票录入-》对接发票开具接口 |
||||||
|
* |
||||||
|
* 录入到billInfo表里面去。 |
||||||
|
* |
||||||
|
* |
||||||
|
*/ |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
} |
@ -0,0 +1,65 @@ |
|||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
||||||
|
<modelVersion>4.0.0</modelVersion> |
||||||
|
<parent> |
||||||
|
<groupId>com.jianshui</groupId> |
||||||
|
<artifactId>jianshui</artifactId> |
||||||
|
<version>3.8.0</version> |
||||||
|
</parent> |
||||||
|
<artifactId>jianshui-platform</artifactId> |
||||||
|
<packaging>war</packaging> |
||||||
|
<name>jianshui-platform Maven Webapp</name> |
||||||
|
<url>http://maven.apache.org</url> |
||||||
|
|
||||||
|
<build> |
||||||
|
<finalName>jianshui-platform</finalName> |
||||||
|
</build> |
||||||
|
|
||||||
|
|
||||||
|
<properties> |
||||||
|
<maven.compiler.source>8</maven.compiler.source> |
||||||
|
<maven.compiler.target>8</maven.compiler.target> |
||||||
|
</properties> |
||||||
|
|
||||||
|
<dependencies> |
||||||
|
<!-- 通用工具--> |
||||||
|
<dependency> |
||||||
|
<groupId>com.jianshui</groupId> |
||||||
|
<artifactId>jianshui-common</artifactId> |
||||||
|
</dependency> |
||||||
|
<dependency> |
||||||
|
<groupId>org.projectlombok</groupId> |
||||||
|
<artifactId>lombok</artifactId> |
||||||
|
</dependency> |
||||||
|
<dependency> |
||||||
|
<groupId>com.jianshui</groupId> |
||||||
|
<artifactId>jianshui-queue</artifactId> |
||||||
|
<version>3.8.0</version> |
||||||
|
<scope>compile</scope> |
||||||
|
</dependency> |
||||||
|
<dependency> |
||||||
|
<groupId>com.jianshui</groupId> |
||||||
|
<artifactId>jianshui-system</artifactId> |
||||||
|
</dependency> |
||||||
|
<dependency> |
||||||
|
<groupId>commons-httpclient</groupId> |
||||||
|
<artifactId>commons-httpclient</artifactId> |
||||||
|
<version>3.1</version> |
||||||
|
<scope>compile</scope> |
||||||
|
</dependency> |
||||||
|
<dependency> |
||||||
|
<groupId>cn.hutool</groupId> |
||||||
|
<artifactId>hutool-all</artifactId> |
||||||
|
<version>5.8.0.M1</version> |
||||||
|
<scope>compile</scope> |
||||||
|
</dependency> |
||||||
|
<dependency> |
||||||
|
<groupId>io.swagger</groupId> |
||||||
|
<artifactId>swagger-annotations</artifactId> |
||||||
|
<version>1.6.2</version> |
||||||
|
<scope>compile</scope> |
||||||
|
</dependency> |
||||||
|
|
||||||
|
|
||||||
|
</dependencies> |
||||||
|
</project> |
Loading…
Reference in new issue