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