79 lines
1.3 KiB
Java
79 lines
1.3 KiB
Java
package com.engine.salary.entity.datacollection.po;
|
||
|
||
import lombok.AllArgsConstructor;
|
||
import lombok.Builder;
|
||
import lombok.Data;
|
||
import lombok.NoArgsConstructor;
|
||
|
||
import java.util.Date;
|
||
|
||
/**
|
||
* 考勤引用表
|
||
*/
|
||
@Data
|
||
@Builder
|
||
@NoArgsConstructor
|
||
@AllArgsConstructor
|
||
public class AttendQuotePO {
|
||
/**
|
||
* 主键
|
||
*/
|
||
private Long id;
|
||
/**
|
||
* 税款所属期
|
||
*/
|
||
private Date salaryYearMonth;
|
||
/**
|
||
* 年份
|
||
*/
|
||
private Integer year;
|
||
/**
|
||
* 月份
|
||
*/
|
||
private Integer month;
|
||
/**
|
||
* 薪资账套表的主键id
|
||
*/
|
||
private Long salarySobId;
|
||
/**
|
||
* 来源。1:引用、2:导入
|
||
*/
|
||
private Integer sourceType;
|
||
/**
|
||
* 薪资核算状态。0:未核算、1:已核算
|
||
*/
|
||
private Integer salaryAccountingStatus;
|
||
/**
|
||
* 考勤周期
|
||
*/
|
||
private String attendCycle;
|
||
/**
|
||
* 薪资周期
|
||
*/
|
||
private String salaryCycle;
|
||
/**
|
||
* 备注
|
||
*/
|
||
private String description;
|
||
/**
|
||
* 创建时间
|
||
*/
|
||
private Date createTime;
|
||
/**
|
||
* 更新时间
|
||
*/
|
||
private Date updateTime;
|
||
/**
|
||
* 创建人
|
||
*/
|
||
private Long creator;
|
||
/**
|
||
* 是否已删除。0:未删除、1:已删除
|
||
*/
|
||
private Integer deleteType;
|
||
/**
|
||
* 租户ID
|
||
*/
|
||
private String tenantKey;
|
||
|
||
} |