Compare commits

..

1 Commits

473 changed files with 1097 additions and 1163 deletions
+26 -5
View File
@@ -14,28 +14,34 @@ WeChat-J 开发使用的库。
我们旨在提供一个初始化的开发框架,能够让应用在使用 Spring Boot 框架的基础上让你的微信公众号快速接入微信平台。
# 项目说明
我们在网上找了一些微信相关的 SDK,要不就是缺少维护,要不就是集成了非常多的功能,因我们的公众号希望能够尽量的自动化处理,所以我们在已有的基础上进行了一些修改和整合。
## 必要的准备
因微信开发 Java SDK 的开发其实并不非常复杂,主要是通过 HTTP 发送请求并且将获得的返回数据进行一些处理返回对象就可以了。
我们需要调用微信的 HTTP 接口,所以我们需要在 Java 中使用一个 Http 客户端,在当前我们的环境中,我们只使用 OkHttp 来进行实现。
在老的项目中,可能不少人会使用 Apache 的 HttpClient 来进行实现,但因为 OkHttp 广泛的被使用在安卓的手机上,所以使用 OkHttp 会更加简便。
在老的项目中,可能不少人会使用 Apache 的 HttpClient 来进行实现,但因为 OkHttp 广泛的被使用在安卓的手机上,所以使用 OkHttp
会更加简便。
* [Retrofit 是什么](https://www.ossez.com/t/retrofit/14302)
* [RxJava 是什么](https://www.ossez.com/t/rxjava/14305)
* [微信测试平台获得测试账号](https://www.ossez.com/t/topic/14281)
### Maven 和依赖
### Maven 和依赖
当前我们还没有把正式版发布到仓库中,我们还在使用 0.0.1-SNAPSHOT 版本进行内部测试。
最好的版本就是下载我们的源代码后 Fork 到你本地,然后直接使用 Maven 来进行编译。
#### 微信公众号(WeChat Java Official Account
模块名:wechat-j-oa
```xml
<dependency>
<groupId>com.ossez.wechat</groupId>
<artifactId>wechat-j-oa</artifactId>
@@ -44,9 +50,11 @@ WeChat-J 开发使用的库。
```
#### 微信小程序(WeChat Java Mini Programs
模块名:wechat-j-mp
```xml
<dependency>
<groupId>com.ossez.wechat</groupId>
<artifactId>wechat-j-mp</artifactId>
@@ -55,16 +63,28 @@ WeChat-J 开发使用的库。
```
#### 微信支付(WeChat Java Pay
模块名:wechat-j-pay (模块还在开发,无实际内容,请不要使用。)
模块名:wechat-j-pay
```xml
<dependency>
<groupId>com.ossez.wechat</groupId>
<artifactId>wechat-j-pay</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
```
#### 企业微信(WeChat Java WeCom
模块名:wechat-j-work (模块还在开发,无实际内容,请不要使用。)
模块名:wechat-j-wecom (模块还在开发,无实际内容,请不要使用。)
#### 微信开放平台(WeChat Java Open
模块名:wechat-j-open
```xml
<dependency>
<groupId>com.ossez.wechat</groupId>
<artifactId>wechat-j-open</artifactId>
@@ -73,17 +93,18 @@ WeChat-J 开发使用的库。
```
### 其他内容
* 任何有关讨论,请访问 [社区](https://www.ossez.com/tag/wechat),您可以在这里提出功能需求,Bug 修复,问题解答。
* 可以考虑使用 http://paste.ubuntu.com 来对你在提交问题的时候出现的为代码进行简化。
### 框架和案例
如果你想登记你的项目,请[访问这里](https://www.ossez.com/t/wechat-j-demo/14303)。
同时,我们也提供了一些开发框架,能够让你直接检出项目就可以直接对微信 SDK 进行接入和测试。
* [公众号 Spring Boot 测试程序](https://github.com/honeymoose/WeChat-Official-Account-Spring)
# 联系方式
请使用下面的联系方式和我们联系。
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean;
package com.ossez.wechat.pay.bean;
import lombok.Data;
import lombok.NoArgsConstructor;
@@ -1,6 +1,6 @@
package com.github.binarywang.wxpay.bean.applyment;
package com.ossez.wechat.pay.bean.applyment;
import com.github.binarywang.wxpay.bean.applyment.enums.ApplymentStateEnum;
import com.ossez.wechat.pay.bean.applyment.enums.ApplymentStateEnum;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;
import lombok.Builder;
@@ -1,7 +1,7 @@
package com.github.binarywang.wxpay.bean.applyment;
package com.ossez.wechat.pay.bean.applyment;
import com.github.binarywang.wxpay.bean.applyment.enums.AccountTypeEnum;
import com.github.binarywang.wxpay.v3.SpecEncrypt;
import com.ossez.wechat.pay.bean.applyment.enums.AccountTypeEnum;
import com.ossez.wechat.pay.v3.SpecEncrypt;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;
import lombok.Builder;
@@ -1,6 +1,7 @@
package com.github.binarywang.wxpay.bean.applyment;
package com.ossez.wechat.pay.bean.applyment;
import com.google.gson.annotations.SerializedName;
import com.ossez.wechat.pay.bean.applyment.enums.SettlementVerifyResultEnum;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
@@ -49,7 +50,7 @@ public class SettlementInfoResult implements Serializable {
/**
* 汇款验证结果
*
* @see com.github.binarywang.wxpay.bean.applyment.enums.SettlementVerifyResultEnum
* @see SettlementVerifyResultEnum
*/
@SerializedName("verify_result")
private String verifyResult;
@@ -1,8 +1,9 @@
package com.github.binarywang.wxpay.bean.applyment;
package com.ossez.wechat.pay.bean.applyment;
import com.github.binarywang.wxpay.bean.applyment.enums.*;
import com.github.binarywang.wxpay.v3.SpecEncrypt;
import com.google.gson.annotations.SerializedName;
import com.ossez.wechat.pay.bean.applyment.enums.*;
import com.ossez.wechat.pay.bean.ecommerce.ApplymentsRequest;
import com.ossez.wechat.pay.v3.SpecEncrypt;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
@@ -419,7 +420,7 @@ public class WxPayApplyment4SubCreateRequest implements Serializable {
* LEGAL法人
* SUPER经办人
* 示例值LEGAL
* @see com.github.binarywang.wxpay.bean.ecommerce.ApplymentsRequest 字段idHolderType
* @see ApplymentsRequest 字段idHolderType
*/
@SerializedName("id_holder_type")
private String idHolderType;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.applyment;
package com.ossez.wechat.pay.bean.applyment;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.applyment.enums;
package com.ossez.wechat.pay.bean.applyment.enums;
/**
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.applyment.enums;
package com.ossez.wechat.pay.bean.applyment.enums;
/**
* 申请单状态枚举类
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.applyment.enums;
package com.ossez.wechat.pay.bean.applyment.enums;
/**
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.applyment.enums;
package com.ossez.wechat.pay.bean.applyment.enums;
/**
* 登记证书的类型枚举
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.applyment.enums;
package com.ossez.wechat.pay.bean.applyment.enums;
/**
* 个体户/企业/党政机关及事业单位/其他组织可选择任一证件类型
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.applyment.enums;
package com.ossez.wechat.pay.bean.applyment.enums;
/**
* 小微经营类型
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.applyment.enums;
package com.ossez.wechat.pay.bean.applyment.enums;
/**
* 经营场景类型枚举值
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.applyment.enums;
package com.ossez.wechat.pay.bean.applyment.enums;
/**
* 返回特约商户的结算账户-汇款验证结果枚举类
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.applyment.enums;
package com.ossez.wechat.pay.bean.applyment.enums;
/**
* 主体类型枚举类
@@ -1,9 +1,7 @@
package com.github.binarywang.wxpay.bean.bank;
package com.ossez.wechat.pay.bean.bank;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
import lombok.Getter;
import lombok.Setter;
import java.io.Serializable;
import java.util.List;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.bank;
package com.ossez.wechat.pay.bean.bank;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.bank;
package com.ossez.wechat.pay.bean.bank;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.bank;
package com.ossez.wechat.pay.bean.bank;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.bank;
package com.ossez.wechat.pay.bean.bank;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.bank;
package com.ossez.wechat.pay.bean.bank;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.bank;
package com.ossez.wechat.pay.bean.bank;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.businesscircle;
package com.ossez.wechat.pay.bean.businesscircle;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.businesscircle;
package com.ossez.wechat.pay.bean.businesscircle;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.businesscircle;
package com.ossez.wechat.pay.bean.businesscircle;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.businesscircle;
package com.ossez.wechat.pay.bean.businesscircle;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.complaint;
package com.ossez.wechat.pay.bean.complaint;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;
@@ -1,7 +1,7 @@
package com.github.binarywang.wxpay.bean.complaint;
package com.ossez.wechat.pay.bean.complaint;
import com.github.binarywang.wxpay.v3.SpecEncrypt;
import com.ossez.wechat.pay.v3.SpecEncrypt;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.complaint;
package com.ossez.wechat.pay.bean.complaint;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.complaint;
package com.ossez.wechat.pay.bean.complaint;
import com.google.gson.annotations.SerializedName;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.complaint;
package com.ossez.wechat.pay.bean.complaint;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.complaint;
package com.ossez.wechat.pay.bean.complaint;
import com.google.gson.annotations.SerializedName;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.complaint;
package com.ossez.wechat.pay.bean.complaint;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.complaint;
package com.ossez.wechat.pay.bean.complaint;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.complaint;
package com.ossez.wechat.pay.bean.complaint;
import com.google.gson.annotations.SerializedName;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.complaint;
package com.ossez.wechat.pay.bean.complaint;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
@@ -1,6 +1,6 @@
package com.github.binarywang.wxpay.bean.coupon;
package com.ossez.wechat.pay.bean.coupon;
import com.github.binarywang.wxpay.bean.request.BaseWxPayRequest;
import com.ossez.wechat.pay.bean.request.BaseWxPayRequest;
import com.ossez.wechat.common.annotation.Required;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import lombok.*;
@@ -1,6 +1,6 @@
package com.github.binarywang.wxpay.bean.coupon;
package com.ossez.wechat.pay.bean.coupon;
import com.github.binarywang.wxpay.bean.result.BaseWxPayResult;
import com.ossez.wechat.pay.bean.result.BaseWxPayResult;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import lombok.Data;
import lombok.EqualsAndHashCode;
@@ -1,6 +1,6 @@
package com.github.binarywang.wxpay.bean.coupon;
package com.ossez.wechat.pay.bean.coupon;
import com.github.binarywang.wxpay.bean.request.BaseWxPayRequest;
import com.ossez.wechat.pay.bean.request.BaseWxPayRequest;
import com.ossez.wechat.common.annotation.Required;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import lombok.*;
@@ -1,6 +1,6 @@
package com.github.binarywang.wxpay.bean.coupon;
package com.ossez.wechat.pay.bean.coupon;
import com.github.binarywang.wxpay.bean.result.BaseWxPayResult;
import com.ossez.wechat.pay.bean.result.BaseWxPayResult;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import lombok.Data;
import lombok.EqualsAndHashCode;
@@ -1,6 +1,6 @@
package com.github.binarywang.wxpay.bean.coupon;
package com.ossez.wechat.pay.bean.coupon;
import com.github.binarywang.wxpay.bean.request.BaseWxPayRequest;
import com.ossez.wechat.pay.bean.request.BaseWxPayRequest;
import com.ossez.wechat.common.annotation.Required;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import lombok.*;
@@ -1,6 +1,6 @@
package com.github.binarywang.wxpay.bean.coupon;
package com.ossez.wechat.pay.bean.coupon;
import com.github.binarywang.wxpay.bean.result.BaseWxPayResult;
import com.ossez.wechat.pay.bean.result.BaseWxPayResult;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import lombok.AllArgsConstructor;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.customs;
package com.ossez.wechat.pay.bean.customs;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.customs;
package com.ossez.wechat.pay.bean.customs;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.customs;
package com.ossez.wechat.pay.bean.customs;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.customs;
package com.ossez.wechat.pay.bean.customs;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.customs;
package com.ossez.wechat.pay.bean.customs;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.customs;
package com.ossez.wechat.pay.bean.customs;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;
@@ -1,6 +1,5 @@
package com.github.binarywang.wxpay.bean.customs;
package com.ossez.wechat.pay.bean.customs;
import com.github.binarywang.wxpay.v3.SpecEncrypt;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.customs;
package com.ossez.wechat.pay.bean.customs;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;
@@ -1,6 +1,6 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.github.binarywang.wxpay.v3.SpecEncrypt;
import com.ossez.wechat.pay.v3.SpecEncrypt;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
import lombok.NoArgsConstructor;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import lombok.Data;
import lombok.NoArgsConstructor;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.*;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.*;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.*;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import lombok.Data;
import lombok.NoArgsConstructor;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,6 +1,6 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.github.binarywang.wxpay.v3.SpecEncrypt;
import com.ossez.wechat.pay.v3.SpecEncrypt;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
import lombok.NoArgsConstructor;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,6 +1,6 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.github.binarywang.wxpay.v3.SpecEncrypt;
import com.ossez.wechat.pay.v3.SpecEncrypt;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
import lombok.NoArgsConstructor;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.*;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
/**
* @author f00lish
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.*;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.*;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.*;
@@ -1,6 +1,6 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.github.binarywang.wxpay.v3.SpecEncrypt;
import com.ossez.wechat.pay.v3.SpecEncrypt;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
import lombok.NoArgsConstructor;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import lombok.AllArgsConstructor;
import lombok.Builder;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.*;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.google.gson.annotations.SerializedName;
import lombok.*;
@@ -1,7 +1,7 @@
package com.github.binarywang.wxpay.bean.ecommerce;
package com.ossez.wechat.pay.bean.ecommerce;
import com.github.binarywang.wxpay.bean.ecommerce.enums.TradeTypeEnum;
import com.github.binarywang.wxpay.v3.util.SignUtils;
import com.ossez.wechat.pay.bean.ecommerce.enums.TradeTypeEnum;
import com.ossez.wechat.pay.v3.util.SignUtils;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
import lombok.NoArgsConstructor;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce.enums;
package com.ossez.wechat.pay.bean.ecommerce.enums;
import lombok.AllArgsConstructor;
import lombok.Getter;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce.enums;
package com.ossez.wechat.pay.bean.ecommerce.enums;
import lombok.AllArgsConstructor;
import lombok.Getter;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.ecommerce.enums;
package com.ossez.wechat.pay.bean.ecommerce.enums;
import lombok.AllArgsConstructor;
import lombok.Getter;
@@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.entpay;
package com.ossez.wechat.pay.bean.entpay;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import lombok.Data;
@@ -1,6 +1,6 @@
package com.github.binarywang.wxpay.bean.entpay;
package com.ossez.wechat.pay.bean.entpay;
import com.github.binarywang.wxpay.bean.result.BaseWxPayResult;
import com.ossez.wechat.pay.bean.result.BaseWxPayResult;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import lombok.Data;
import lombok.EqualsAndHashCode;
@@ -1,7 +1,7 @@
package com.github.binarywang.wxpay.bean.entpay;
package com.ossez.wechat.pay.bean.entpay;
import com.github.binarywang.wxpay.bean.request.BaseWxPayRequest;
import com.github.binarywang.wxpay.exception.WxPayException;
import com.ossez.wechat.pay.bean.request.BaseWxPayRequest;
import com.ossez.wechat.pay.exception.WxPayException;
import com.ossez.wechat.common.annotation.Required;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import lombok.AllArgsConstructor;
@@ -1,6 +1,6 @@
package com.github.binarywang.wxpay.bean.entpay;
package com.ossez.wechat.pay.bean.entpay;
import com.github.binarywang.wxpay.bean.result.BaseWxPayResult;
import com.ossez.wechat.pay.bean.result.BaseWxPayResult;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import lombok.Data;
import lombok.EqualsAndHashCode;

Some files were not shown because too many files have changed in this diff Show More