base模块转移到到pay的相关类添加过期的注解
This commit is contained in:
parent
ef3b50a19f
commit
01c8bc0e03
@ -45,7 +45,9 @@ import com.foxinmy.weixin4j.xml.XmlStream;
|
||||
* @see <a href=
|
||||
* "https://pay.weixin.qq.com/wiki/doc/api/tools/mch_pay.php?chapter=14_1">
|
||||
* 企业付款</a>
|
||||
* @deprecated 商户平台API迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public class CashApi extends MchApi {
|
||||
|
||||
public CashApi(WeixinPayAccount weixinAccount) {
|
||||
@ -92,7 +94,7 @@ public class CashApi extends MchApi {
|
||||
/**
|
||||
* 批量发放红包 企业向微信用户个人发现金红包
|
||||
*
|
||||
* @param redpacket
|
||||
* @param redpackets
|
||||
* 多个红包信息
|
||||
* @return 发放结果
|
||||
* @see #sendRedpacks(Redpacket...)
|
||||
|
||||
@ -21,7 +21,9 @@ import com.foxinmy.weixin4j.xml.XmlStream;
|
||||
* @since JDK 1.6
|
||||
* @see <a href=
|
||||
* "https://pay.weixin.qq.com/wiki/doc/api/tools/sp_coupon.php?chapter=12_1">代金券</a>
|
||||
* @deprecated 商户平台API迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public class CouponApi extends MchApi {
|
||||
|
||||
public CouponApi(WeixinPayAccount weixinAccount) {
|
||||
|
||||
@ -22,7 +22,9 @@ import com.foxinmy.weixin4j.xml.XmlStream;
|
||||
* @date 2016年3月67日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 商户平台API迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public class CustomsApi extends MchApi {
|
||||
|
||||
public CustomsApi(WeixinPayAccount weixinAccount) {
|
||||
|
||||
@ -27,7 +27,9 @@ import com.foxinmy.weixin4j.util.Weixin4jConfigUtil;
|
||||
* @date 2016年3月26日
|
||||
* @since JDK 1.6
|
||||
* @see <a href="https://pay.weixin.qq.com/wiki/doc/api/index.html">商户支付平台</a>
|
||||
* @deprecated 商户平台API迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public class MchApi extends BaseApi {
|
||||
|
||||
private final static ResourceBundle WEIXIN_BUNDLE;
|
||||
|
||||
@ -60,7 +60,9 @@ import com.foxinmy.weixin4j.xml.XmlStream;
|
||||
* @author jinyu(foxinmy@gmail.com)
|
||||
* @date 2014年10月28日
|
||||
* @since JDK 1.6
|
||||
* @deprecated 商户平台API迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public class PayApi extends MchApi {
|
||||
|
||||
public PayApi(WeixinPayAccount weixinAccount) {
|
||||
|
||||
@ -12,7 +12,9 @@ import com.foxinmy.weixin4j.util.StringUtil;
|
||||
* @date 2015年6月26日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 支付相关的类现已迁移到weixin4j-pay子模块
|
||||
*/
|
||||
@Deprecated
|
||||
public class WeixinPayAccount extends WeixinAccount {
|
||||
|
||||
private static final long serialVersionUID = -2791256176906048632L;
|
||||
|
||||
@ -15,7 +15,9 @@ import com.alibaba.fastjson.annotation.JSONField;
|
||||
* @date 2014年8月19日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
@XmlRootElement
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
public class JsPayNotify extends PayBaseInfo {
|
||||
|
||||
@ -19,7 +19,9 @@ import com.foxinmy.weixin4j.type.SignType;
|
||||
* @date 2014年11月5日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
@XmlRootElement
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
public class PayBaseInfo implements Serializable {
|
||||
|
||||
@ -18,7 +18,9 @@ import com.foxinmy.weixin4j.util.DateUtil;
|
||||
* @author jinyu(foxinmy@gmail.com)
|
||||
* @date 2014年12月18日
|
||||
* @since JDK 1.6
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
@XmlRootElement
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
public class PayPackage extends MerchantResult {
|
||||
|
||||
@ -10,6 +10,7 @@ import com.alibaba.fastjson.annotation.JSONField;
|
||||
import com.foxinmy.weixin4j.util.DateUtil;
|
||||
import com.foxinmy.weixin4j.util.RandomUtil;
|
||||
|
||||
@Deprecated
|
||||
@XmlRootElement
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
public class PayRequest extends PayBaseInfo {
|
||||
|
||||
@ -56,7 +56,9 @@ import com.foxinmy.weixin4j.util.Weixin4jConfigUtil;
|
||||
* @date 2015年1月3日
|
||||
* @since JDK 1.6
|
||||
* @see <a href="http://pay.weixin.qq.com/wiki/doc/api/index.html">商户平台支付API</a>
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public class WeixinPayProxy {
|
||||
|
||||
/**
|
||||
|
||||
@ -22,7 +22,9 @@ import com.foxinmy.weixin4j.util.DateUtil;
|
||||
* @date 2015年3月27日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
@XmlRootElement
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
public class CouponDetail extends MerchantResult {
|
||||
|
||||
@ -16,7 +16,9 @@ import com.foxinmy.weixin4j.payment.mch.MerchantResult;
|
||||
* @date 2015年3月25日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
@XmlRootElement
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
public class CouponResult extends MerchantResult {
|
||||
|
||||
@ -21,7 +21,9 @@ import com.foxinmy.weixin4j.util.DateUtil;
|
||||
* @date 2015年3月27日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
@XmlRootElement
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
public class CouponStock extends MerchantResult {
|
||||
|
||||
@ -18,7 +18,9 @@ import com.foxinmy.weixin4j.type.mch.CouponType;
|
||||
* @date 2015年3月24日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
@XmlRootElement
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
public class OrderCouponInfo implements Serializable {
|
||||
|
||||
@ -17,7 +17,9 @@ import com.alibaba.fastjson.annotation.JSONField;
|
||||
* @date 2015年3月24日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
@XmlRootElement
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
public class RefundCouponInfo implements Serializable {
|
||||
|
||||
@ -21,7 +21,9 @@ import com.foxinmy.weixin4j.util.MapUtil;
|
||||
* @see com.foxinmy.weixin4j.payment.PayRequest
|
||||
* @see <a href=
|
||||
* "https://pay.weixin.qq.com/wiki/doc/api/app/app.php?chapter=8_1">APP支付</a>
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public class APPPayRequest extends AbstractPayRequest {
|
||||
public APPPayRequest(String prePayId, WeixinPayAccount payAccount) {
|
||||
super(prePayId, payAccount);
|
||||
|
||||
@ -4,6 +4,7 @@ import com.foxinmy.weixin4j.model.WeixinPayAccount;
|
||||
import com.foxinmy.weixin4j.sign.WeixinPaymentSignature;
|
||||
import com.foxinmy.weixin4j.sign.WeixinSignature;
|
||||
|
||||
@Deprecated
|
||||
public abstract class AbstractPayRequest implements MchPayRequest {
|
||||
|
||||
private final String prePayId;
|
||||
|
||||
@ -17,7 +17,9 @@ import com.foxinmy.weixin4j.util.DateUtil;
|
||||
* @date 2015年4月1日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
@XmlRootElement
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
public class CorpPayment extends MerchantResult {
|
||||
|
||||
@ -19,7 +19,9 @@ import com.foxinmy.weixin4j.util.DateUtil;
|
||||
* @date 2015年6月23日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
@XmlRootElement
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
public class CorpPaymentRecord extends MerchantResult {
|
||||
|
||||
@ -18,7 +18,9 @@ import com.foxinmy.weixin4j.util.DateUtil;
|
||||
* @date 2015年4月1日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
@XmlRootElement
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
public class CorpPaymentResult extends MerchantResult {
|
||||
|
||||
@ -15,7 +15,9 @@ import com.foxinmy.weixin4j.type.CustomsCity;
|
||||
* @date 2016年3月27日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public class CustomsOrder extends MerchantResult {
|
||||
|
||||
private static final long serialVersionUID = 799510373861612386L;
|
||||
|
||||
@ -15,7 +15,9 @@ import com.foxinmy.weixin4j.xml.ListsuffixResult;
|
||||
* @date 2016年3月27日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public class CustomsOrderRecord extends MerchantResult {
|
||||
|
||||
private static final long serialVersionUID = -1675090110657154049L;
|
||||
|
||||
@ -16,7 +16,9 @@ import com.foxinmy.weixin4j.util.DateUtil;
|
||||
* @date 2016年3月27日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public class CustomsOrderResult extends MerchantResult {
|
||||
|
||||
private static final long serialVersionUID = 799510373861612386L;
|
||||
|
||||
@ -22,7 +22,9 @@ import com.foxinmy.weixin4j.type.TradeType;
|
||||
* @see com.foxinmy.weixin4j.payment.PayRequest
|
||||
* @see <a
|
||||
* href="https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=7_1">网页端调起支付API</a>
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public class JSAPIPayRequest extends AbstractPayRequest {
|
||||
|
||||
public JSAPIPayRequest(String prePayId, WeixinPayAccount payAccount) {
|
||||
|
||||
@ -18,7 +18,9 @@ import com.foxinmy.weixin4j.type.TradeType;
|
||||
* @see com.foxinmy.weixin4j.payment.PayRequest
|
||||
* @see <a
|
||||
* href="https://pay.weixin.qq.com/wiki/doc/api/micropay.php?chapter=5_1">刷卡支付</a>
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public class MICROPayRequest extends Order implements MchPayRequest {
|
||||
|
||||
private static final long serialVersionUID = 6147576305404111278L;
|
||||
|
||||
@ -20,7 +20,9 @@ import com.foxinmy.weixin4j.type.TradeType;
|
||||
* @date 2014年10月21日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
@XmlRootElement
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
public class MchPayPackage extends PayPackage {
|
||||
|
||||
@ -16,7 +16,9 @@ import com.foxinmy.weixin4j.type.TradeType;
|
||||
* @see MICROPayRequest 刷卡支付
|
||||
* @see APPPayRequest APP支付
|
||||
* @see WAPPayRequest WAP支付
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public interface MchPayRequest {
|
||||
/**
|
||||
* 预支付交易ID
|
||||
|
||||
@ -17,7 +17,9 @@ import com.foxinmy.weixin4j.type.SignType;
|
||||
* @date 2014年10月21日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
@XmlRootElement
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
public class MerchantResult extends XmlResult {
|
||||
|
||||
@ -13,7 +13,9 @@ import com.foxinmy.weixin4j.type.CurrencyType;
|
||||
* @date 2016年7月21日
|
||||
* @since JDK 1.7
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public class MerchantTradeResult extends MerchantResult {
|
||||
|
||||
private static final long serialVersionUID = 4205906286092873877L;
|
||||
|
||||
@ -15,7 +15,9 @@ import com.foxinmy.weixin4j.type.TradeType;
|
||||
* @see com.foxinmy.weixin4j.payment.PayRequest
|
||||
* @see <a
|
||||
* href="https://pay.weixin.qq.com/wiki/doc/api/native.php?chapter=6_1">NATIVE扫码支付(模式二)</a>
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public class NATIVEPayRequest extends AbstractPayRequest {
|
||||
|
||||
private final String codeUrl;
|
||||
|
||||
@ -15,7 +15,9 @@ import com.alibaba.fastjson.annotation.JSONField;
|
||||
* @date 2014年10月30日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
@XmlRootElement
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
public class NativePayNotify extends OpenIdResult {
|
||||
|
||||
@ -19,7 +19,9 @@ import com.foxinmy.weixin4j.util.RandomUtil;
|
||||
* @date 2014年10月28日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
@XmlRootElement
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
public class NativePayResponse extends MerchantResult {
|
||||
|
||||
@ -15,7 +15,9 @@ import com.alibaba.fastjson.annotation.JSONField;
|
||||
* @date 2015年7月23日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
@XmlRootElement
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
public class OpenIdResult extends MerchantResult {
|
||||
|
||||
@ -25,7 +25,9 @@ import com.foxinmy.weixin4j.xml.ListsuffixResult;
|
||||
* @date 2014年11月2日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
@XmlRootElement
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
public class Order extends MerchantTradeResult {
|
||||
|
||||
@ -16,7 +16,9 @@ import com.foxinmy.weixin4j.type.TradeType;
|
||||
* @date 2014年10月21日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
@XmlRootElement
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
public class PrePay extends MerchantResult {
|
||||
|
||||
@ -20,7 +20,9 @@ import com.foxinmy.weixin4j.util.DateUtil;
|
||||
* href="https://pay.weixin.qq.com/wiki/doc/api/tools/cash_coupon.php?chapter=13_1">普通红包</a>
|
||||
* @see <a
|
||||
* href="https://pay.weixin.qq.com/wiki/doc/api/tools/cash_coupon.php?chapter=16_1">裂变红包</a>
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
@XmlRootElement
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
public class Redpacket extends MerchantResult {
|
||||
|
||||
@ -25,7 +25,9 @@ import com.foxinmy.weixin4j.util.DateUtil;
|
||||
* @date 2015年6月4日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
@XmlRootElement
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
public class RedpacketRecord extends XmlResult {
|
||||
|
||||
@ -17,7 +17,9 @@ import com.foxinmy.weixin4j.util.MapUtil;
|
||||
* @date 2017年1月4日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public class RedpacketRisk {
|
||||
private Map<String, String> risk;
|
||||
|
||||
|
||||
@ -18,7 +18,9 @@ import com.foxinmy.weixin4j.util.DateUtil;
|
||||
* @date 2015年4月1日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
@XmlRootElement
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
public class RedpacketSendResult extends MerchantResult {
|
||||
|
||||
@ -24,7 +24,9 @@ import com.foxinmy.weixin4j.xml.ListsuffixResult;
|
||||
* @author jinyu(foxinmy@gmail.com)
|
||||
* @date 2016年7月21日
|
||||
* @since JDK 1.6
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
@XmlRootElement
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
public class RefundDetail implements Serializable {
|
||||
|
||||
@ -17,7 +17,9 @@ import com.foxinmy.weixin4j.xml.ListsuffixResult;
|
||||
* @author jinyu(foxinmy@gmail.com)
|
||||
* @date 2014年11月1日
|
||||
* @since JDK 1.6
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
@XmlRootElement
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
public class RefundRecord extends MerchantTradeResult {
|
||||
|
||||
@ -19,7 +19,9 @@ import com.foxinmy.weixin4j.xml.ListsuffixResult;
|
||||
* @date 2014年11月6日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
@XmlRootElement
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
public class RefundResult extends MerchantTradeResult {
|
||||
|
||||
@ -4,6 +4,7 @@ import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
|
||||
@Deprecated
|
||||
@XmlRootElement
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
public class SceneInfoApp {
|
||||
|
||||
@ -7,6 +7,7 @@ import javax.xml.bind.annotation.XmlRootElement;
|
||||
|
||||
import com.alibaba.fastjson.annotation.JSONField;
|
||||
|
||||
@Deprecated
|
||||
@XmlRootElement
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
public class SceneInfoStore {
|
||||
|
||||
@ -17,6 +17,7 @@ import com.foxinmy.weixin4j.util.DateUtil;
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
*/
|
||||
@Deprecated
|
||||
public class SettlementRecord extends MerchantResult {
|
||||
|
||||
private static final long serialVersionUID = 7952659545609519979L;
|
||||
|
||||
@ -16,6 +16,7 @@ import com.foxinmy.weixin4j.type.TradeType;
|
||||
* @see <a
|
||||
* href="https://pay.weixin.qq.com/wiki/doc/api/wap.php?chapter=15_1">WAP支付</a>
|
||||
*/
|
||||
@Deprecated
|
||||
public class WAPPayRequest extends AbstractPayRequest {
|
||||
/**
|
||||
* 微信支付URL
|
||||
|
||||
@ -10,7 +10,9 @@ import com.foxinmy.weixin4j.util.MapUtil;
|
||||
* @date 2016年3月26日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public abstract class AbstractWeixinSignature implements WeixinSignature {
|
||||
/**
|
||||
* 是否编码
|
||||
|
||||
@ -12,7 +12,9 @@ import com.foxinmy.weixin4j.util.DigestUtil;
|
||||
* @since JDK 1.6
|
||||
* @see <a
|
||||
* href="https://pay.weixin.qq.com/wiki/doc/api/external/jsapi.php?chapter=4_3">支付签名说明</a>
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public class WeixinPaymentSignature extends AbstractWeixinSignature {
|
||||
/**
|
||||
* 支付密钥
|
||||
|
||||
@ -10,7 +10,9 @@ import com.foxinmy.weixin4j.type.SignType;
|
||||
* @date 2016年3月26日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public interface WeixinSignature {
|
||||
/**
|
||||
* 是否编码
|
||||
|
||||
@ -9,7 +9,9 @@ package com.foxinmy.weixin4j.type;
|
||||
* @date 2015年8月19日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public enum BankType {
|
||||
/**
|
||||
* 工商银行(借记卡)
|
||||
|
||||
@ -8,7 +8,9 @@ package com.foxinmy.weixin4j.type;
|
||||
* @date 2016年3月27日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public enum CredentialType {
|
||||
IDCARD("身份证");
|
||||
CredentialType(String name) {
|
||||
|
||||
@ -8,7 +8,9 @@ package com.foxinmy.weixin4j.type;
|
||||
* @date 2014年11月2日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public enum CurrencyType {
|
||||
CNY("人民币"), HKD("港元"), TWD("台币"), EUR("欧元"), USD("美元"), GBP("英镑"), JPY("日元"), CAD(
|
||||
"加拿大元"), AUD("澳大利亚元"), NZD("新西兰元"), KRW("韩元"), THB("泰铢");
|
||||
|
||||
@ -8,7 +8,9 @@ package com.foxinmy.weixin4j.type;
|
||||
* @date 2016年3月27日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public enum CustomsCity {
|
||||
NO("无需上报海关"), GUANGZHOU("广州"), HANGZHOU("杭州"), NINGBO("宁波"), ZHENGZHOU_BS(
|
||||
"郑州(保税物流中心)"), CHONGQING("重庆"), XIAN("西安"), SHANGHAI("上海"), ZHENGZHOU_ZH(
|
||||
|
||||
@ -8,7 +8,9 @@ package com.foxinmy.weixin4j.type;
|
||||
* @date 2016年3月27日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public enum CustomsSatus {
|
||||
UNDECLARED("未申报"), SUBMITTED("申报已提交"), PROCESSING("申报中"), SUCCESS("申报成功"), FAIL(
|
||||
"申报失败"), EXCEPT("海关接口异常");
|
||||
|
||||
@ -10,7 +10,9 @@ import java.io.Serializable;
|
||||
* @date 2014年11月1日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public class IdQuery implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -5273675987521807370L;
|
||||
|
||||
@ -8,7 +8,9 @@ package com.foxinmy.weixin4j.type;
|
||||
* @date 2014年11月1日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public enum IdType {
|
||||
/**
|
||||
* 微信退款单号
|
||||
|
||||
@ -8,7 +8,9 @@ package com.foxinmy.weixin4j.type;
|
||||
* @date 2014年11月5日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public enum SignType {
|
||||
SHA1, MD5, HMAC$SHA256
|
||||
}
|
||||
|
||||
@ -8,7 +8,9 @@ package com.foxinmy.weixin4j.type;
|
||||
* @date 2016年12月21日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public enum TarType {
|
||||
GZIP
|
||||
}
|
||||
|
||||
@ -8,7 +8,9 @@ package com.foxinmy.weixin4j.type;
|
||||
* @date 2014年11月2日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public enum TradeState {
|
||||
/**
|
||||
* 支付成功
|
||||
|
||||
@ -8,7 +8,9 @@ package com.foxinmy.weixin4j.type;
|
||||
* @date 2014年10月21日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到weixin4j-pay子模块
|
||||
*/
|
||||
@Deprecated
|
||||
public enum TradeType {
|
||||
/**
|
||||
* JS支付
|
||||
|
||||
@ -8,7 +8,9 @@ package com.foxinmy.weixin4j.type.mch;
|
||||
* @date 2014年10月31日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public enum BillType {
|
||||
/**
|
||||
* 全部
|
||||
|
||||
@ -8,7 +8,9 @@ package com.foxinmy.weixin4j.type.mch;
|
||||
* @date 2015年4月1日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public enum CorpPaymentCheckNameType {
|
||||
/**
|
||||
* 不校验真实姓名
|
||||
|
||||
@ -8,7 +8,9 @@ package com.foxinmy.weixin4j.type.mch;
|
||||
* @date 2015年3月27日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public enum CouponStatus {
|
||||
/**
|
||||
* 已激活
|
||||
|
||||
@ -8,7 +8,9 @@ package com.foxinmy.weixin4j.type.mch;
|
||||
* @date 2015年3月27日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public enum CouponStockStatus {
|
||||
/**
|
||||
* 未激活
|
||||
|
||||
@ -8,7 +8,9 @@ package com.foxinmy.weixin4j.type.mch;
|
||||
* @date 2015年3月27日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public enum CouponStockType {
|
||||
/**
|
||||
* 批量型
|
||||
|
||||
@ -8,7 +8,9 @@ package com.foxinmy.weixin4j.type.mch;
|
||||
* @date 2015年3月27日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public enum CouponType {
|
||||
/**
|
||||
* 使用无门槛
|
||||
|
||||
@ -7,7 +7,9 @@ package com.foxinmy.weixin4j.type.mch;
|
||||
* @author jinyu(foxinmy@gmail.com)
|
||||
* @date 2017年1月4日
|
||||
* @since JDK 1.6
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public enum RedpacketSceneType {
|
||||
/**
|
||||
* 商品促销
|
||||
|
||||
@ -8,7 +8,9 @@ package com.foxinmy.weixin4j.type.mch;
|
||||
* @date 2015年6月4日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public enum RedpacketSendType {
|
||||
/**
|
||||
* 通过API接口发放
|
||||
|
||||
@ -7,7 +7,9 @@ package com.foxinmy.weixin4j.type.mch;
|
||||
* @date 2015年6月4日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public enum RedpacketStatus {
|
||||
/**
|
||||
* 发放中
|
||||
|
||||
@ -8,7 +8,9 @@ package com.foxinmy.weixin4j.type.mch;
|
||||
* @date 2015年6月4日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public enum RedpacketType {
|
||||
/**
|
||||
* 裂变红包
|
||||
|
||||
@ -5,7 +5,9 @@ package com.foxinmy.weixin4j.type.mch;
|
||||
* @className RefundAccountType
|
||||
* @author jinyu(foxinmy@gmail.com)
|
||||
* @date 2016年12月12日
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public enum RefundAccountType {
|
||||
/**
|
||||
* ---未结算资金退款(默认使用未结算资金退款)
|
||||
|
||||
@ -8,7 +8,9 @@ package com.foxinmy.weixin4j.type.mch;
|
||||
* @date 2014年11月6日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public enum RefundChannel {
|
||||
/**
|
||||
* 原路退款
|
||||
|
||||
@ -8,7 +8,9 @@ package com.foxinmy.weixin4j.type.mch;
|
||||
* @date 2014年11月2日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public enum RefundStatus {
|
||||
/**
|
||||
* 退款成功
|
||||
|
||||
@ -8,7 +8,9 @@ package com.foxinmy.weixin4j.type.mch;
|
||||
* @date 2014年12月31日
|
||||
* @since JDK 1.6
|
||||
* @see
|
||||
* @deprecated 迁移到子模块weixin4j-pay
|
||||
*/
|
||||
@Deprecated
|
||||
public enum RefundType {
|
||||
/**
|
||||
* 1:商户号余额退款;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user