微信支付-账单-boolean

This commit is contained in:
faymanwang
2020-07-31 11:48:35 +08:00
parent 94376027f6
commit 4085ed7ce6
2 changed files with 3 additions and 3 deletions

View File

@@ -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);
}

View File

@@ -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);
}