weaver-hrm-salary/src/com/engine/salary/entity/taxdeclaration/TaxDeclaration.java

66 lines
1.2 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.engine.salary.entity.taxdeclaration;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.Date;
/**
* 个税申报表
*/
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class TaxDeclaration {
/**
* 创建时间
*/
private Date createTime;
/**
* 创建人
*/
private Long creator;
/**
* 是否已删除。0未删除、1已删除
*/
private Integer deleteType;
/**
* 备注
*/
private String description;
/**
* 主键id
*/
private Long id;
/**
* 薪资所属月
*/
@JsonFormat(pattern = "yyyy-MM", timezone = "GMT+8")
private Date salaryMonth;
/**
* 个税扣缴义务人id
*/
private Long taxAgentId;
/**
* 税款所属期
*/
private Date taxCycle;
/**
* 租户ID
*/
private String tenantKey;
/**
* 更新时间
*/
private Date updateTime;
/**
* 应税项目。1:正常工资薪金所得
*/
private Integer incomeCategory;
}