Commit 1116cc31 authored by fangxinjiang's avatar fangxinjiang

专项扣除

parent 4bebc08c
...@@ -45,8 +45,8 @@ public class TSpecialDeducationSum extends BaseEntity { ...@@ -45,8 +45,8 @@ public class TSpecialDeducationSum extends BaseEntity {
/** /**
* 申报单位 * 申报单位
*/ */
@Length(max = 20, message = "申报单位不能超过20个字符") @Length(max = 50, message = "申报单位不能超过50个字符")
@ExcelAttribute(name = "申报单位", maxLength = 20, isNotEmpty = true) @ExcelAttribute(name = "申报单位", maxLength = 50, isNotEmpty = true)
@ExcelProperty(value = "申报单位") @ExcelProperty(value = "申报单位")
private String declareTitle; private String declareTitle;
/** /**
...@@ -94,67 +94,67 @@ public class TSpecialDeducationSum extends BaseEntity { ...@@ -94,67 +94,67 @@ public class TSpecialDeducationSum extends BaseEntity {
/** /**
* 本期收入 * 本期收入
*/ */
@ExcelAttribute(name = "本期收入") @ExcelAttribute(name = "本期收入", isFloat = true,max = "999999999.99")
@ExcelProperty(value = "本期收入") @ExcelProperty(value = "本期收入")
private BigDecimal currentIncome; private BigDecimal currentIncome;
/** /**
* 本期免税收入 * 本期免税收入
*/ */
@ExcelAttribute(name = "本期免税收入") @ExcelAttribute(name = "本期免税收入", isFloat = true,max = "999999999.99")
@ExcelProperty(value = "本期免税收入") @ExcelProperty(value = "本期免税收入")
private BigDecimal currentIncomeTaxFree; private BigDecimal currentIncomeTaxFree;
/** /**
* 基本医疗保险费 * 基本医疗保险费
*/ */
@ExcelAttribute(name = "基本医疗保险费") @ExcelAttribute(name = "基本医疗保险费", isFloat = true,max = "999999999.99")
@ExcelProperty(value = "基本医疗保险费") @ExcelProperty(value = "基本医疗保险费")
private BigDecimal insurancePension; private BigDecimal insurancePension;
/** /**
* 基本医疗保险费 * 基本医疗保险费
*/ */
@ExcelAttribute(name = "基本医疗保险费") @ExcelAttribute(name = "基本医疗保险费", isFloat = true,max = "999999999.99")
@ExcelProperty(value = "基本医疗保险费") @ExcelProperty(value = "基本医疗保险费")
private BigDecimal insuranceMedical; private BigDecimal insuranceMedical;
/** /**
* 失业保险费 * 失业保险费
*/ */
@ExcelAttribute(name = "失业保险费") @ExcelAttribute(name = "失业保险费", isFloat = true,max = "999999999.99")
@ExcelProperty(value = "失业保险费") @ExcelProperty(value = "失业保险费")
private BigDecimal insuranceUnemployment; private BigDecimal insuranceUnemployment;
/** /**
* 住房公积金 * 住房公积金
*/ */
@ExcelAttribute(name = "住房公积金") @ExcelAttribute(name = "住房公积金", isFloat = true,max = "999999999.99")
@ExcelProperty(value = "住房公积金") @ExcelProperty(value = "住房公积金")
private BigDecimal fund; private BigDecimal fund;
/** /**
* 累计子女教育 * 累计子女教育
*/ */
@ExcelAttribute(name = "累计子女教育") @ExcelAttribute(name = "累计子女教育", isFloat = true,max = "999999999.99")
@ExcelProperty(value = "累计子女教育") @ExcelProperty(value = "累计子女教育")
private BigDecimal sumChildEduMoney; private BigDecimal sumChildEduMoney;
/** /**
* 累计住房贷款利息 * 累计住房贷款利息
*/ */
@ExcelAttribute(name = "累计住房贷款利息") @ExcelAttribute(name = "累计住房贷款利息", isFloat = true,max = "999999999.99")
@ExcelProperty(value = "累计住房贷款利息") @ExcelProperty(value = "累计住房贷款利息")
private BigDecimal sumHousingLoanMoney; private BigDecimal sumHousingLoanMoney;
/** /**
* 累计住房租金 * 累计住房租金
*/ */
@ExcelAttribute(name = "累计住房租金") @ExcelAttribute(name = "累计住房租金", isFloat = true,max = "999999999.99")
@ExcelProperty(value = "累计住房租金") @ExcelProperty(value = "累计住房租金")
private BigDecimal sumHousingRentMoney; private BigDecimal sumHousingRentMoney;
/** /**
* 累计赡养老人 * 累计赡养老人
*/ */
@ExcelAttribute(name = "累计赡养老人") @ExcelAttribute(name = "累计赡养老人", isFloat = true,max = "999999999.99")
@ExcelProperty(value = "累计赡养老人") @ExcelProperty(value = "累计赡养老人")
private BigDecimal sumSupportElderlyMoney; private BigDecimal sumSupportElderlyMoney;
/** /**
* 累计继续教育 * 累计继续教育
*/ */
@ExcelAttribute(name = "累计继续教育") @ExcelAttribute(name = "累计继续教育", isFloat = true,max = "999999999.99")
@ExcelProperty(value = "累计继续教育") @ExcelProperty(value = "累计继续教育")
private BigDecimal sumContinuingEducationMoney; private BigDecimal sumContinuingEducationMoney;
...@@ -162,62 +162,62 @@ public class TSpecialDeducationSum extends BaseEntity { ...@@ -162,62 +162,62 @@ public class TSpecialDeducationSum extends BaseEntity {
* 累计婴幼儿照护费用 (累计3岁以下婴幼儿照护) * 累计婴幼儿照护费用 (累计3岁以下婴幼儿照护)
* hgw 2022-4-2 11:05:44 樊青青提的需求 * hgw 2022-4-2 11:05:44 樊青青提的需求
*/ */
@ExcelAttribute(name = "累计婴幼儿照护费用") @ExcelAttribute(name = "累计婴幼儿照护费用", isFloat = true,max = "999999999.99")
@ExcelProperty(value = "累计婴幼儿照护费用") @ExcelProperty(value = "累计婴幼儿照护费用")
private BigDecimal sumBabyMoney; private BigDecimal sumBabyMoney;
/** /**
* 企业(职业)年金 * 企业(职业)年金
*/ */
@ExcelAttribute(name = "企业(职业)年金") @ExcelAttribute(name = "企业(职业)年金", isFloat = true,max = "999999999.99")
@ExcelProperty(value = "企业(职业)年金") @ExcelProperty(value = "企业(职业)年金")
private BigDecimal enterpriseAnnuity; private BigDecimal enterpriseAnnuity;
/** /**
* 商业健康保险 * 商业健康保险
*/ */
@ExcelAttribute(name = "商业健康保险") @ExcelAttribute(name = "商业健康保险", isFloat = true,max = "999999999.99")
@ExcelProperty(value = "商业健康保险") @ExcelProperty(value = "商业健康保险")
private BigDecimal takingRisks; private BigDecimal takingRisks;
/** /**
* 税延养老保险 * 税延养老保险
*/ */
@ExcelAttribute(name = "税延养老保险") @ExcelAttribute(name = "税延养老保险", isFloat = true,max = "999999999.99")
@ExcelProperty(value = "税延养老保险") @ExcelProperty(value = "税延养老保险")
private BigDecimal taxDeferredInsurance; private BigDecimal taxDeferredInsurance;
/** /**
* 其他 * 其他
*/ */
@ExcelAttribute(name = "其他") @ExcelAttribute(name = "其他", isFloat = true,max = "999999999.99")
@ExcelProperty(value = "其他") @ExcelProperty(value = "其他")
private BigDecimal otherMoney; private BigDecimal otherMoney;
/** /**
* 准予扣除的捐赠额 * 准予扣除的捐赠额
*/ */
@ExcelAttribute(name = "准予扣除的捐赠额") @ExcelAttribute(name = "准予扣除的捐赠额", isFloat = true,max = "999999999.99")
@ExcelProperty(value = "准予扣除的捐赠额") @ExcelProperty(value = "准予扣除的捐赠额")
private BigDecimal donationAmount; private BigDecimal donationAmount;
/** /**
* 税前扣除项目合计 * 税前扣除项目合计
*/ */
@ExcelAttribute(name = "税前扣除项目合计") @ExcelAttribute(name = "税前扣除项目合计", isFloat = true,max = "999999999.99")
@ExcelProperty(value = "税前扣除项目合计") @ExcelProperty(value = "税前扣除项目合计")
private BigDecimal preTaxDeduction; private BigDecimal preTaxDeduction;
/** /**
* 减免税额 * 减免税额
*/ */
@ExcelAttribute(name = "减免税额") @ExcelAttribute(name = "减免税额", isFloat = true,max = "999999999.99")
@ExcelProperty(value = "减免税额") @ExcelProperty(value = "减免税额")
private BigDecimal taxSavings; private BigDecimal taxSavings;
/** /**
* 减除费用 * 减除费用
*/ */
@ExcelAttribute(name = "减除费用") @ExcelAttribute(name = "减除费用", isFloat = true,max = "999999999.99")
@ExcelProperty(value = "减除费用") @ExcelProperty(value = "减除费用")
private BigDecimal costReduction; private BigDecimal costReduction;
/** /**
* 已扣缴税额 * 已扣缴税额
*/ */
@ExcelAttribute(name = "已扣缴税额") @ExcelAttribute(name = "已扣缴税额", isFloat = true,max = "999999999.99")
@ExcelProperty(value = "已扣缴税额") @ExcelProperty(value = "已扣缴税额")
private BigDecimal taxesWithheld; private BigDecimal taxesWithheld;
/** /**
......
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