106 lines
2.1 KiB
Java
106 lines
2.1 KiB
Java
package com.engine.salary.entity.datacollection.po;
|
||
|
||
import com.engine.salary.annotation.Encrypt;
|
||
import com.engine.salary.annotation.SalaryFormulaVar;
|
||
import lombok.AllArgsConstructor;
|
||
import lombok.Builder;
|
||
import lombok.Data;
|
||
import lombok.NoArgsConstructor;
|
||
|
||
import java.util.Collection;
|
||
import java.util.Date;
|
||
import java.util.List;
|
||
|
||
/**
|
||
* 数据采集-其他免税扣除表
|
||
*/
|
||
@Data
|
||
@Builder
|
||
@NoArgsConstructor
|
||
@AllArgsConstructor
|
||
public class OtherDeductionPO {
|
||
|
||
/**
|
||
* 主键
|
||
*/
|
||
private Long id;
|
||
|
||
/**
|
||
* 人员信息表的主键id
|
||
*/
|
||
private Long employeeId;
|
||
|
||
/**
|
||
* 个税扣缴义务人的主键id
|
||
*/
|
||
private Long taxAgentId;
|
||
|
||
/**
|
||
* 申报月份
|
||
*/
|
||
private Date declareMonth;
|
||
|
||
/**
|
||
* 商业健康保险
|
||
*/
|
||
@SalaryFormulaVar(defaultLabel = "商业健康保险", labelId = 91238, dataType = "number")
|
||
@Encrypt
|
||
private String businessHealthyInsurance;
|
||
|
||
/**
|
||
* 税延养老保险
|
||
*/
|
||
@SalaryFormulaVar(defaultLabel = "税延养老保险", labelId = 91239, dataType = "number")
|
||
@Encrypt
|
||
private String taxDelayEndowmentInsurance;
|
||
|
||
/**
|
||
* 其他
|
||
*/
|
||
@SalaryFormulaVar(defaultLabel = "其他", labelId = 84500, dataType = "number")
|
||
@Encrypt
|
||
private String otherDeduction;
|
||
|
||
/**
|
||
* 准予扣除的捐赠额
|
||
*/
|
||
@SalaryFormulaVar(defaultLabel = "准予扣除的捐赠额", labelId = 91240, dataType = "number")
|
||
@Encrypt
|
||
private String deductionAllowedDonation;
|
||
|
||
/**
|
||
* 个人养老金
|
||
*/
|
||
@SalaryFormulaVar(defaultLabel = "个人养老金", labelId = 91240, dataType = "number")
|
||
@Encrypt
|
||
private String privatePension;
|
||
|
||
/**
|
||
* 创建时间
|
||
*/
|
||
private Date createTime;
|
||
|
||
/**
|
||
* 更新时间
|
||
*/
|
||
private Date updateTime;
|
||
|
||
/**
|
||
* 创建人
|
||
*/
|
||
private Long creator;
|
||
|
||
/**
|
||
* 是否已删除。0:未删除、1:已删除
|
||
*/
|
||
private Integer deleteType;
|
||
|
||
/**
|
||
* 租户ID
|
||
*/
|
||
private String tenantKey;
|
||
|
||
private List<Long> employeeIds;
|
||
private Collection<Long> taxAgentIds;
|
||
|
||
} |