weaver-hrm-salary/src/com/engine/salary/entity/datacollection/po/AttendQuotePO.java

79 lines
1.3 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.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;
}