清理无用代码

This commit is contained in:
Binary Wang 2018-04-21 23:52:28 +08:00
parent b5c3b5e59a
commit 2063dcfd4c
2 changed files with 0 additions and 46 deletions

View File

@ -1,23 +0,0 @@
package com.github.binarywang.wxpay.bean.result;
import com.github.binarywang.wxpay.bean.entpay.EntPayQueryResult;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import org.apache.commons.beanutils.BeanUtils;
/**
* 企业付款查询返回结果
* 请使用{@link EntPayQueryResult}
*/
@XStreamAlias("xml")
@Deprecated
public class WxEntPayQueryResult extends EntPayQueryResult {
public static WxEntPayQueryResult createFrom(EntPayQueryResult entPayQueryResult) {
WxEntPayQueryResult result = new WxEntPayQueryResult();
try {
BeanUtils.copyProperties(result, entPayQueryResult);
} catch (Exception e) {
e.printStackTrace();
}
return result;
}
}

View File

@ -1,23 +0,0 @@
package com.github.binarywang.wxpay.bean.result;
import com.github.binarywang.wxpay.bean.entpay.EntPayResult;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import org.apache.commons.beanutils.BeanUtils;
/**
* 企业付款返回结果
* 请使用{@link EntPayResult}
*/
@XStreamAlias("xml")
@Deprecated
public class WxEntPayResult extends EntPayResult {
public static WxEntPayResult createFrom(EntPayResult entPayResult) {
WxEntPayResult result = new WxEntPayResult();
try {
BeanUtils.copyProperties(result, entPayResult);
} catch (Exception e) {
e.printStackTrace();
}
return result;
}
}