66 lines
1.2 KiB
Java
66 lines
1.2 KiB
Java
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;
|
||
|
||
} |