mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-08-24 07:23:01 +08:00
清理无用代码
This commit is contained in:
parent
b5c3b5e59a
commit
2063dcfd4c
@ -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;
|
||||
}
|
||||
}
|
@ -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;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user