Commit b1466193 authored by licc's avatar licc

新增扣税说明

parent 19341156
...@@ -24,4 +24,11 @@ public class TaxRateVo { ...@@ -24,4 +24,11 @@ public class TaxRateVo {
*/ */
@ApiModelProperty(value = "税款金额", name = "taxMoney") @ApiModelProperty(value = "税款金额", name = "taxMoney")
private Double taxMoney; private Double taxMoney;
/**
* 扣税说明
*/
@ApiModelProperty(value = "扣税说明", name = "taxDesc")
private String taxDesc;
} }
...@@ -212,6 +212,7 @@ public class BankServiceImpl extends ServiceImpl<BankInfoMapper, BankInfo> imple ...@@ -212,6 +212,7 @@ public class BankServiceImpl extends ServiceImpl<BankInfoMapper, BankInfo> imple
Double actualMoney = money - taxMoney; Double actualMoney = money - taxMoney;
taxRateVo.setActualMoney(actualMoney); taxRateVo.setActualMoney(actualMoney);
taxRateVo.setTaxMoney(taxMoney); taxRateVo.setTaxMoney(taxMoney);
taxRateVo.setTaxDesc("提现时系统自动扣除2%个人所得税,剩余税费由平台替缴。");
return R.ok(taxRateVo); return R.ok(taxRateVo);
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment