2022-03-04 10:10:38 +08:00
|
|
|
package com.engine.salary.entity.datacollection.dto;
|
|
|
|
|
|
2022-03-08 15:40:26 +08:00
|
|
|
import com.engine.salary.annotation.SalaryTable;
|
|
|
|
|
import com.engine.salary.annotation.SalaryTableColumn;
|
|
|
|
|
import com.engine.salary.annotation.SalaryTableOperate;
|
2022-03-07 15:08:56 +08:00
|
|
|
import com.engine.salary.util.excel.ExcelProperty;
|
2022-03-04 10:10:38 +08:00
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
2022-03-10 17:57:46 +08:00
|
|
|
import com.weaverboot.tools.enumTools.weaComponent.WeaTableTypeEnum;
|
2022-03-04 10:10:38 +08:00
|
|
|
import lombok.AllArgsConstructor;
|
|
|
|
|
import lombok.Builder;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import lombok.NoArgsConstructor;
|
|
|
|
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 数据采集-累计专项附加扣除
|
|
|
|
|
* <p>Copyright: Copyright (c) 2022</p>
|
|
|
|
|
* <p>Company: 泛微软件</p>
|
|
|
|
|
*
|
|
|
|
|
* @author qiantao
|
|
|
|
|
* @version 1.0
|
|
|
|
|
**/
|
|
|
|
|
@Data
|
|
|
|
|
@Builder
|
|
|
|
|
@NoArgsConstructor
|
|
|
|
|
@AllArgsConstructor
|
2022-03-10 17:57:46 +08:00
|
|
|
@SalaryTable(pageId = "a4f85287-e3f9-4275-adn9-7d06e54y6rj8", tableType = WeaTableTypeEnum.CHECKBOX, operates = {
|
2022-03-08 18:10:03 +08:00
|
|
|
@SalaryTableOperate(text = "查看明细")
|
2022-03-08 15:40:26 +08:00
|
|
|
})
|
2022-03-08 18:10:03 +08:00
|
|
|
public class AddUpDeductionDTO {
|
2022-03-04 10:10:38 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 主键id
|
|
|
|
|
*/
|
2022-03-08 15:40:26 +08:00
|
|
|
@SalaryTableColumn(column = "id", display = false)
|
2022-03-04 10:10:38 +08:00
|
|
|
private Long id;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 员工id
|
|
|
|
|
*/
|
|
|
|
|
private Long employeeId;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 姓名
|
|
|
|
|
*/
|
2022-03-07 15:08:56 +08:00
|
|
|
@ExcelProperty(index = 0)
|
2022-03-08 15:40:26 +08:00
|
|
|
@SalaryTableColumn(text = "姓名", width = "10%", column = "username")
|
2022-03-04 10:10:38 +08:00
|
|
|
private String username;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 个税扣缴义务人
|
|
|
|
|
*/
|
2022-03-07 15:08:56 +08:00
|
|
|
@ExcelProperty(index = 1)
|
2022-03-08 15:40:26 +08:00
|
|
|
@SalaryTableColumn(text = "个税扣缴义务人", width = "10%", column = "taxAgentName")
|
2022-03-04 10:10:38 +08:00
|
|
|
private String taxAgentName;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 部门
|
|
|
|
|
*/
|
2022-03-07 15:08:56 +08:00
|
|
|
@ExcelProperty(index = 2)
|
2022-03-08 15:40:26 +08:00
|
|
|
@SalaryTableColumn(text = "部门", width = "10%", column = "departmentName")
|
2022-03-04 10:10:38 +08:00
|
|
|
private String departmentName;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 手机号
|
|
|
|
|
*/
|
2022-03-07 15:08:56 +08:00
|
|
|
@ExcelProperty(index = 3)
|
2022-03-08 15:40:26 +08:00
|
|
|
@SalaryTableColumn(text = "手机号", width = "10%", column = "mobile")
|
2022-03-04 10:10:38 +08:00
|
|
|
private String mobile;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 工号
|
|
|
|
|
*/
|
2022-03-07 15:08:56 +08:00
|
|
|
@ExcelProperty(index = 4)
|
2022-03-08 15:40:26 +08:00
|
|
|
@SalaryTableColumn(text = "工号", width = "10%", column = "jobNum")
|
2022-03-04 10:10:38 +08:00
|
|
|
private String jobNum;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 证件号码
|
|
|
|
|
*/
|
2022-03-07 15:08:56 +08:00
|
|
|
@ExcelProperty(index = 5)
|
2022-03-08 15:40:26 +08:00
|
|
|
@SalaryTableColumn(text = "证件号码", width = "10%", column = "idNo")
|
2022-03-04 10:10:38 +08:00
|
|
|
private String idNo;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 入职日期
|
|
|
|
|
*/
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
2022-03-07 15:08:56 +08:00
|
|
|
@ExcelProperty(index = 6)
|
2022-03-10 17:57:46 +08:00
|
|
|
@SalaryTableColumn(text = "入职日期", width = "10%", column = "hiredate", transmethod = "com.engine.salary.transmethod.TransMethod.timeToDate")
|
2022-03-04 10:10:38 +08:00
|
|
|
private Date hiredate;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 累计子女教育
|
|
|
|
|
*/
|
2022-03-07 15:08:56 +08:00
|
|
|
@ExcelProperty(index = 7)
|
2022-03-08 15:40:26 +08:00
|
|
|
@SalaryTableColumn(text = "累计子女教育", width = "10%", column = "addUpChildEducation")
|
2022-03-04 10:10:38 +08:00
|
|
|
private BigDecimal addUpChildEducation;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 累计继续教育
|
|
|
|
|
*/
|
2022-03-07 15:08:56 +08:00
|
|
|
@ExcelProperty(index = 8)
|
2022-03-08 15:40:26 +08:00
|
|
|
@SalaryTableColumn(text = "累计继续教育", width = "10%", column = "addUpContinuingEducation")
|
2022-03-04 10:10:38 +08:00
|
|
|
private BigDecimal addUpContinuingEducation;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 累计住房贷款利息
|
|
|
|
|
*/
|
2022-03-07 15:08:56 +08:00
|
|
|
@ExcelProperty(index = 9)
|
2022-03-08 15:40:26 +08:00
|
|
|
@SalaryTableColumn(text = "累计住房贷款利息", width = "10%", column = "addUpHousingLoanInterest")
|
2022-03-04 10:10:38 +08:00
|
|
|
private BigDecimal addUpHousingLoanInterest;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 累计住房租金
|
|
|
|
|
*/
|
2022-03-07 15:08:56 +08:00
|
|
|
@ExcelProperty(index = 10)
|
2022-03-08 15:40:26 +08:00
|
|
|
@SalaryTableColumn(text = "累计住房租金", width = "10%", column = "addUpHousingRent")
|
2022-03-04 10:10:38 +08:00
|
|
|
private BigDecimal addUpHousingRent;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 累计赡养老人
|
|
|
|
|
*/
|
2022-03-07 15:08:56 +08:00
|
|
|
@ExcelProperty(index = 11)
|
2022-03-08 15:40:26 +08:00
|
|
|
@SalaryTableColumn(text = "累计赡养老人", width = "10%", column = "addUpSupportElderly")
|
2022-03-04 10:10:38 +08:00
|
|
|
private BigDecimal addUpSupportElderly;
|
2022-03-08 15:40:26 +08:00
|
|
|
|
|
|
|
|
@SalaryTableColumn(text = "操作", width = "20%", column = "operate")
|
|
|
|
|
private String operate;
|
2022-03-04 10:10:38 +08:00
|
|
|
}
|