Commit d1c089af authored by hongguangwu's avatar hongguangwu

1.7.21-专项扣除

parent 22ae8556
...@@ -268,4 +268,17 @@ public class TSpecialDeducationSum extends BaseEntity { ...@@ -268,4 +268,17 @@ public class TSpecialDeducationSum extends BaseEntity {
@HeadFontStyle(fontHeightInPoints = 11) @HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty(value = "备注") @ExcelProperty(value = "备注")
private String remark; private String remark;
@ExcelAttribute(name = "公务交通费用", isFloat = true,max = "999999999.99")
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty(value = "公务交通费用")
private BigDecimal gongWuMoney;
@ExcelAttribute(name = "通讯费用", isFloat = true,max = "999999999.99")
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty(value = "通讯费用")
private BigDecimal tongXunMoney;
@ExcelAttribute(name = "律师办案费", isFloat = true,max = "999999999.99")
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty(value = "律师办案费")
private BigDecimal lvShiMoney;
} }
...@@ -39,6 +39,9 @@ ...@@ -39,6 +39,9 @@
<result property="costReduction" column="COST_REDUCTION"/> <result property="costReduction" column="COST_REDUCTION"/>
<result property="taxesWithheld" column="TAXES_WITHHELD"/> <result property="taxesWithheld" column="TAXES_WITHHELD"/>
<result property="remark" column="REMARK"/> <result property="remark" column="REMARK"/>
<result property="gongWuMoney" column="GONG_WU_MONEY"/>
<result property="tongXunMoney" column="TONG_XUN_MONEY"/>
<result property="lvShiMoney" column="LV_SHI_MONEY"/>
</resultMap> </resultMap>
<sql id="Base_Column_List"> <sql id="Base_Column_List">
...@@ -76,6 +79,9 @@ ...@@ -76,6 +79,9 @@
COST_REDUCTION, COST_REDUCTION,
TAXES_WITHHELD, TAXES_WITHHELD,
REMARK REMARK
,GONG_WU_MONEY
,TONG_XUN_MONEY
,LV_SHI_MONEY
</sql> </sql>
<sql id="tSpecialDeducationSum_where"> <sql id="tSpecialDeducationSum_where">
......
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