weaver-hrm-salary/src/com/engine/salary/entity/datacollection/po/SpecialAddDeductionPO.java

100 lines
1.6 KiB
Java
Raw Normal View History

2022-10-31 16:19:42 +08:00
package com.engine.salary.entity.datacollection.po;
import com.engine.salary.annotation.Encrypt;
2022-10-31 16:19:42 +08:00
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
2022-11-02 17:29:44 +08:00
import lombok.experimental.Accessors;
2022-10-31 16:19:42 +08:00
import java.util.Date;
2022-10-31 16:19:42 +08:00
/**
* 数据采集-专项附加扣除表
*/
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
2022-11-02 17:29:44 +08:00
@Accessors(chain = true)
2023-09-05 11:04:53 +08:00
//hrsa_special_add_deduction
2022-10-31 16:19:42 +08:00
public class SpecialAddDeductionPO {
private Long id;
/**
* 人员信息表的主键id
*/
private Long employeeId;
/**
* 个税扣缴义务人的主键id
*/
private Long taxAgentId;
/**
* 子女教育
*/
@Encrypt
2022-10-31 16:19:42 +08:00
private String childrenEducation;
/**
* 继续教育
*/
@Encrypt
2022-10-31 16:19:42 +08:00
private String continuingEducation;
/**
* 住房贷款利息
*/
@Encrypt
2022-10-31 16:19:42 +08:00
private String housingLoanInterest;
/**
* 住房租金
*/
@Encrypt
2022-10-31 16:19:42 +08:00
private String housingRent;
/**
* 赡养老人
*/
@Encrypt
2022-10-31 16:19:42 +08:00
private String supportingElder;
/**
* 大病医疗
*/
@Encrypt
2022-10-31 16:19:42 +08:00
private String seriousIllnessTreatment;
/**
* 婴幼儿照护
*/
@Encrypt
2022-10-31 16:19:42 +08:00
private String infantCare;
/**
* 创建时间
*/
private Date createTime;
/**
* 更新时间
*/
private Date updateTime;
/**
* 创建人
*/
private Long creator;
/**
* 是否已删除0未删除1已删除
*/
private Integer deleteType;
/**
* 租户ID
*/
private String tenantKey;
}