Commit 1116cc31 authored by fangxinjiang's avatar fangxinjiang

专项扣除

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