🎨 重构规范包结构名称

This commit is contained in:
Binary Wang 2023-07-09 21:25:20 +08:00
parent e4b2f94af5
commit 8bb2acf632
17 changed files with 19 additions and 15 deletions

View File

@ -10,6 +10,8 @@ import java.io.Serializable;
/**
* 微信通知接口头部信息需要做签名验证
* 文档地址: https://wechatpay-api.gitbook.io/wechatpay-api-v3/qian-ming-zhi-nan-1/qian-ming-yan-zheng
*
* @author cloudX
*/
@Data
@Builder

View File

@ -10,6 +10,8 @@ import java.io.Serializable;
/**
* 微信通知接口头部信息需要做签名验证
* 文档地址: https://pay.weixin.qq.com/wiki/doc/apiv3/wechatpay/wechatpay4_1.shtml
*
* @author thinstar
*/
@Data
@Builder

View File

@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.profitsharingV3;
package com.github.binarywang.wxpay.bean.profitsharing.v3;
import java.io.Serializable;

View File

@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.profitsharingV3;
package com.github.binarywang.wxpay.bean.profitsharing.v3;
import java.io.Serializable;

View File

@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.profitsharingV3;
package com.github.binarywang.wxpay.bean.profitsharing.v3;
import java.io.Serializable;

View File

@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.profitsharingV3;
package com.github.binarywang.wxpay.bean.profitsharing.v3;
import com.google.gson.annotations.SerializedName;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.profitsharingV3;
package com.github.binarywang.wxpay.bean.profitsharing.v3;
import com.google.gson.annotations.SerializedName;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.profitsharingV3;
package com.github.binarywang.wxpay.bean.profitsharing.v3;
import com.github.binarywang.wxpay.v3.SpecEncrypt;
import com.google.gson.annotations.SerializedName;

View File

@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.profitsharingV3;
package com.github.binarywang.wxpay.bean.profitsharing.v3;
import com.github.binarywang.wxpay.v3.SpecEncrypt;
import com.google.gson.annotations.SerializedName;

View File

@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.profitsharingV3;
package com.github.binarywang.wxpay.bean.profitsharing.v3;
import com.google.gson.annotations.SerializedName;

View File

@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.profitsharingV3;
package com.github.binarywang.wxpay.bean.profitsharing.v3;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;

View File

@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.profitsharingV3;
package com.github.binarywang.wxpay.bean.profitsharing.v3;
import com.google.gson.annotations.SerializedName;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.profitsharingV3;
package com.github.binarywang.wxpay.bean.profitsharing.v3;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;

View File

@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.profitsharingV3;
package com.github.binarywang.wxpay.bean.profitsharing.v3;
import com.google.gson.annotations.SerializedName;
import lombok.Data;

View File

@ -1,4 +1,4 @@
package com.github.binarywang.wxpay.bean.profitsharingV3;
package com.github.binarywang.wxpay.bean.profitsharing.v3;
import com.google.gson.annotations.SerializedName;
import lombok.Data;

View File

@ -1,7 +1,7 @@
package com.github.binarywang.wxpay.service;
import com.github.binarywang.wxpay.bean.notify.SignatureHeader;
import com.github.binarywang.wxpay.bean.profitsharingV3.*;
import com.github.binarywang.wxpay.bean.profitsharing.v3.*;
import com.github.binarywang.wxpay.exception.WxPayException;
/**

View File

@ -1,7 +1,7 @@
package com.github.binarywang.wxpay.service.impl;
import com.github.binarywang.wxpay.bean.notify.SignatureHeader;
import com.github.binarywang.wxpay.bean.profitsharingV3.*;
import com.github.binarywang.wxpay.bean.profitsharing.v3.*;
import com.github.binarywang.wxpay.exception.WxPayException;
import com.github.binarywang.wxpay.service.ProfitSharingV3Service;
import com.github.binarywang.wxpay.service.WxPayService;