package cn.iocoder.yudao.module.hrm.dal.dataobject.attendance;
|
|
import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
|
import com.baomidou.mybatisplus.annotation.KeySequence;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.*;
|
|
import java.math.BigDecimal;
|
|
/**
|
* 考勤统计汇总 DO
|
*
|
* @author 芋道源码
|
*/
|
@TableName("hrm_attendance_summary")
|
@KeySequence("hrm_attendance_summary_seq")
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@ToString(callSuper = true)
|
@Builder
|
@NoArgsConstructor
|
@AllArgsConstructor
|
public class HrmAttendanceSummaryDO extends BaseDO {
|
|
/**
|
* 汇总ID
|
*/
|
@TableId
|
private Long id;
|
|
/**
|
* 员工ID
|
*
|
* 关联 HrmEmployeeDO#getId()
|
*/
|
private Long userId;
|
|
/**
|
* 部门ID
|
*/
|
private Long deptId;
|
|
/**
|
* 年月,格式:yyyy-MM
|
*/
|
private String yearMonth;
|
|
/**
|
* 应出勤天数
|
*/
|
private Integer workDays;
|
|
/**
|
* 实际出勤天数
|
*/
|
private Integer actualDays;
|
|
/**
|
* 迟到次数
|
*/
|
private Integer lateCount;
|
|
/**
|
* 早退次数
|
*/
|
private Integer earlyCount;
|
|
/**
|
* 缺卡次数
|
*/
|
private Integer absentCount;
|
|
/**
|
* 加班时长(小时)
|
*/
|
private BigDecimal overtimeHours;
|
|
/**
|
* 请假时长(小时)
|
*/
|
private BigDecimal leaveHours;
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
}
|