|
@@ -0,0 +1,47 @@
|
|
|
+package org.jeecg.modules.salary.vo;
|
|
|
+
|
|
|
+import lombok.Data;
|
|
|
+import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
+
|
|
|
+@Data
|
|
|
+public class ExcelTemp {
|
|
|
+
|
|
|
+ @Excel(name = "组织", width = 15)
|
|
|
+ private String orgName;
|
|
|
+
|
|
|
+ @Excel(name = "编号", width = 15)
|
|
|
+ private String code;
|
|
|
+
|
|
|
+ @Excel(name = "姓名", width = 15)
|
|
|
+ private String name;
|
|
|
+
|
|
|
+ @Excel(name = "工资抵扣", width = 30)
|
|
|
+ private java.math.BigDecimal deduction;
|
|
|
+
|
|
|
+ @Excel(name = "基本工资", width = 15)
|
|
|
+ private java.math.BigDecimal wages;
|
|
|
+
|
|
|
+ @Excel(name = "应发", width = 15)
|
|
|
+ private java.math.BigDecimal yingfa;
|
|
|
+
|
|
|
+ @Excel(name = "社保", width = 15)
|
|
|
+ private java.math.BigDecimal shebao;
|
|
|
+
|
|
|
+ @Excel(name = "住房基金", width = 15)
|
|
|
+ private java.math.BigDecimal zhufangjijin;
|
|
|
+
|
|
|
+ @Excel(name = "个人所得税", width = 15)
|
|
|
+ private java.math.BigDecimal gerenshuodeshui;
|
|
|
+
|
|
|
+ @Excel(name = "合计应扣", width = 15)
|
|
|
+ private java.math.BigDecimal hejiyingkou;
|
|
|
+
|
|
|
+ @Excel(name = "实发合计", width = 15)
|
|
|
+ private java.math.BigDecimal shifaheji;
|
|
|
+
|
|
|
+ @Excel(name = "纳税金额", width = 15)
|
|
|
+ private java.math.BigDecimal yingnashuie;
|
|
|
+
|
|
|
+
|
|
|
+}
|
|
|
+
|