77 lines
1.6 KiB
Java
77 lines
1.6 KiB
Java
package com.engine.salary.entity.datacollection.po;
|
|
|
|
import com.engine.salary.report.enums.EmployeeTypeEnum;
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Builder;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Collection;
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* 数据采集-累计专项附加扣除在线查询失败表
|
|
* <p>Copyright: Copyright (c) 2023</p>
|
|
* <p>Company: 泛微软件</p>
|
|
*
|
|
* @author qiantao
|
|
* @version 1.0
|
|
**/
|
|
@Data
|
|
@Builder
|
|
@NoArgsConstructor
|
|
@AllArgsConstructor
|
|
//hrsa_add_up_deduction_req_fail")
|
|
//数据采集-累计专项附加扣除在线查询失败表")
|
|
public class AddUpDeductionRequestFailPO implements Serializable {
|
|
|
|
private static final long serialVersionUID = -4950145856639514995L;
|
|
|
|
//ID")
|
|
private Long id;
|
|
|
|
//创建时间", ignore = true)
|
|
private Date createTime;
|
|
|
|
//修改时间", ignore = true)
|
|
private Date updateTime;
|
|
|
|
//创建人id", ignore = true)
|
|
private long creator;
|
|
|
|
//是否删除", ignore = true)
|
|
private int deleteType;
|
|
|
|
//租户KEY", ignore = true)
|
|
private String tenantKey;
|
|
|
|
//查询请求ID")
|
|
private Long requestId;
|
|
|
|
//外部查询请求ID")
|
|
private String outerRequestId;
|
|
|
|
//员工Id")
|
|
private Long employeeId;
|
|
|
|
//个税扣缴义务人ID")
|
|
private Long taxAgentId;
|
|
|
|
//失败原因")
|
|
private String reason;
|
|
|
|
//税款所属期")
|
|
private Date taxYearMonth;
|
|
|
|
/**
|
|
* @see EmployeeTypeEnum
|
|
*/
|
|
//人员类型")
|
|
private Integer employeeType;
|
|
|
|
|
|
private Collection<Long> ids;
|
|
|
|
}
|