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