Commit b1466193 authored by licc's avatar licc

新增扣税说明

parent 19341156
......@@ -12,7 +12,7 @@ import lombok.Data;
*/
@Data
@ApiModel("TaxRateVo")
public class TaxRateVo {
public class TaxRateVo {
/**
* 实际金额
*/
......@@ -24,4 +24,11 @@ public class TaxRateVo {
*/
@ApiModelProperty(value = "税款金额", name = "taxMoney")
private Double taxMoney;
/**
* 扣税说明
*/
@ApiModelProperty(value = "扣税说明", name = "taxDesc")
private String taxDesc;
}
......@@ -212,6 +212,7 @@ public class BankServiceImpl extends ServiceImpl<BankInfoMapper, BankInfo> imple
Double actualMoney = money - taxMoney;
taxRateVo.setActualMoney(actualMoney);
taxRateVo.setTaxMoney(taxMoney);
taxRateVo.setTaxDesc("提现时系统自动扣除2%个人所得税,剩余税费由平台替缴。");
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