87 lines
1.3 KiB
Java
87 lines
1.3 KiB
Java
package com.engine.salary.entity.salaryacct.po;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Builder;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
import lombok.experimental.Accessors;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* 薪资核算记录对应的个税扣缴义务人
|
|
* <p>Copyright: Copyright (c) 2023</p>
|
|
* <p>Company: 泛微软件</p>
|
|
*
|
|
* @author qiantao
|
|
* @version 1.0
|
|
**/
|
|
@Data
|
|
@Builder
|
|
@Accessors(chain = true)
|
|
@NoArgsConstructor
|
|
@AllArgsConstructor
|
|
// "hrsa_acct_tax_agent")
|
|
public class SalaryAcctTaxAgentPO {
|
|
|
|
/**
|
|
* 主键id
|
|
*/
|
|
private Long id;
|
|
|
|
/**
|
|
* 薪资核算记录的id
|
|
*/
|
|
private Long salaryAcctRecordId;
|
|
|
|
/**
|
|
* 收入所得项目
|
|
*/
|
|
private Integer incomeCategory;
|
|
|
|
/**
|
|
* 个税扣缴义务人的id
|
|
*/
|
|
private Long taxAgentId;
|
|
|
|
/**
|
|
* 薪资所属月
|
|
*/
|
|
private Date salaryMonth;
|
|
|
|
/**
|
|
* 税款所属期
|
|
*/
|
|
private Date taxCycle;
|
|
|
|
/**
|
|
* 租户key
|
|
*/
|
|
private String tenantKey;
|
|
|
|
/**
|
|
* 创建人id
|
|
*/
|
|
private Long creator;
|
|
|
|
/**
|
|
* 是否删除
|
|
*/
|
|
private Integer deleteType;
|
|
|
|
/**
|
|
* 创建时间
|
|
*/
|
|
private Date createTime;
|
|
|
|
/**
|
|
* 更新时间
|
|
*/
|
|
private Date updateTime;
|
|
|
|
|
|
|
|
private Date startMonth;
|
|
private Date endMonth;
|
|
}
|