68 lines
1.4 KiB
Java
68 lines
1.4 KiB
Java
|
|
package com.engine.salary.entity.datacollection.po;
|
||
|
|
|
||
|
|
import com.engine.salary.enums.datacollection.EnumAddUpDeductionRequestStatus;
|
||
|
|
import lombok.AllArgsConstructor;
|
||
|
|
import lombok.Builder;
|
||
|
|
import lombok.Data;
|
||
|
|
import lombok.NoArgsConstructor;
|
||
|
|
|
||
|
|
import java.io.Serializable;
|
||
|
|
import java.util.Date;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 数据采集-累计专项附加扣除在线查询表
|
||
|
|
*
|
||
|
|
* @author chengliming
|
||
|
|
* @date: 2022-10-26 16:07:04
|
||
|
|
*/
|
||
|
|
@Data
|
||
|
|
@Builder
|
||
|
|
@NoArgsConstructor
|
||
|
|
@AllArgsConstructor
|
||
|
|
//hrsa_add_up_deduction_request")
|
||
|
|
//数据采集-累计专项附加扣除在线查询表")
|
||
|
|
public class AddUpDeductionRequestPO implements Serializable {
|
||
|
|
|
||
|
|
private static final long serialVersionUID = 1452863635879051515L;
|
||
|
|
|
||
|
|
//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;
|
||
|
|
|
||
|
|
//乐观锁版本", ignore = true)
|
||
|
|
private int lockVersion;
|
||
|
|
|
||
|
|
//查询请求ID")
|
||
|
|
private Long requestId;
|
||
|
|
|
||
|
|
//外部接口查询请求ID")
|
||
|
|
private String outerRequestId;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see EnumAddUpDeductionRequestStatus
|
||
|
|
*/
|
||
|
|
//请求处理状态")
|
||
|
|
private int requestStatus;
|
||
|
|
|
||
|
|
//税款所属期")
|
||
|
|
private Date taxYearMonth;
|
||
|
|
|
||
|
|
//个税扣缴义务人ID")
|
||
|
|
private Long taxAgentId;
|
||
|
|
|
||
|
|
}
|