mirror of
https://gitee.com/egzosn/pay-java-parent.git
synced 2026-05-09 12:36:16 +08:00
微信支付-账单-boolean
This commit is contained in:
@@ -11,5 +11,5 @@ import java.util.Map;
|
||||
*/
|
||||
public interface WxBillService {
|
||||
|
||||
public Map<String, Object> downloadbill(Date billDate, String billType, Boolean tarType);
|
||||
public Map<String, Object> downloadbill(Date billDate, String billType, boolean tarType);
|
||||
}
|
||||
|
||||
@@ -549,8 +549,8 @@ public class WxPayService extends BasePayService<WxPayConfigStorage> implements
|
||||
* @return 返回支付方下载对账单的结果
|
||||
*/
|
||||
@Override
|
||||
public Map<String, Object> downloadbill(Date billDate, String billType, Boolean tarType) {
|
||||
Map<String, Object> parameters = getDownloadBillParam(billDate, billType,tarType?true:false);
|
||||
public Map<String, Object> downloadbill(Date billDate, String billType, boolean tarType) {
|
||||
Map<String, Object> parameters = getDownloadBillParam(billDate, billType,tarType==true?true:false);
|
||||
//设置签名
|
||||
return downBillRet(parameters);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user