Skip to content

Commit

Permalink
补全注释
Browse files Browse the repository at this point in the history
增加maven版本库
  • Loading branch information
egaon committed May 9, 2017
1 parent 464dc09 commit 4676451
Show file tree
Hide file tree
Showing 69 changed files with 1,267 additions and 895 deletions.
28 changes: 26 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,30 @@
1. pay-java-common 公共lib,支付核心与规范定义
2. pay-java-demo 具体的支付demo
3. pay-java-* 具体的支付实现库
###Maven配置
支付核心模块
```xml

<dependency>
<groupId>com.egzosn</groupId>
<artifactId>pay-java-common</artifactId>
<version>2.0.1</version>
</dependency>

```

具体支付模块 "{module-name}" 为具体的支付渠道的模块名 pay-java-ali,pay-java-wx等

```xml

<dependency>
<groupId>com.egzosn</groupId>
<artifactId>{module-name}</artifactId>
<version>2.0.1</version>
</dependency>

```



###使用
Expand All @@ -33,13 +57,13 @@

服务端+网页端详细使用与简单教程请看 [pay-java-demo](pay-java-demo?dir=1&filepath=pay-java-demo)

android 例子 [pay-java-android](https://github.com/egzosn/pay-java-android)
android 例子 [pay-java-android](http://git.oschina.net/egzosn/pay-java-android)


##交流
很希望更多志同道合友友一起扩展新的的支付接口。

这里感谢[ouyangxiangshao](https://github.com/ouyangxiangshao)[Actinian](https://github.com/Actinian) 所提交的安卓例子或者分支
这里感谢[ouyangxiangshao](https://github.com/ouyangxiangshao)[Actinian](http://git.oschina.net/Actinia517) 所提交的安卓例子或者分支

非常欢迎和感谢对本项目发起Pull Request的同学,不过本项目基于git flow开发流程,因此在发起Pull Request的时候请选择develop分支。

Expand Down
2 changes: 1 addition & 1 deletion pay-java-ali/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>pay-java-parent</artifactId>
<groupId>com.egzosn</groupId>
<version>2.0.SNAPSHOT</version>
<version>2.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pay-java-ali</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@

/**
* 支付客户端配置存储
* @author egan
* @email egzosn@gmail.com
* @date 2016-5-18 14:09:01
* author egan
*
* email egzosn@gmail.com
* date 2016-5-18 14:09:01
*/
public class AliPayConfigStorage extends BasePayConfigStorage {

Expand Down Expand Up @@ -57,9 +58,11 @@ public String getPartner() {
return pid;
}


/**
* 设置合作者id
* @see #setPid(String)
* @return 合作者id
* @param partner 合作者id
*/
@Deprecated
public void setPartner(String partner) {
Expand Down
Loading

0 comments on commit 4676451

Please sign in to comment.