2026-05-12 16:29:54 +08:00
|
|
|
package com.klp.domain.bo;
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
2026-05-15 13:13:34 +08:00
|
|
|
import com.klp.common.core.domain.BaseEntity;
|
2026-05-12 16:29:54 +08:00
|
|
|
import lombok.Data;
|
2026-05-15 13:13:34 +08:00
|
|
|
import lombok.EqualsAndHashCode;
|
2026-05-14 17:15:47 +08:00
|
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
2026-05-12 16:29:54 +08:00
|
|
|
|
2026-05-15 13:13:34 +08:00
|
|
|
import java.math.BigDecimal;
|
2026-05-12 16:29:54 +08:00
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
|
@Data
|
2026-05-15 13:13:34 +08:00
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
|
|
|
public class WmsAttendanceCheckBo extends BaseEntity {
|
2026-05-12 16:29:54 +08:00
|
|
|
|
2026-05-15 13:13:34 +08:00
|
|
|
private Long checkId;
|
2026-05-12 16:29:54 +08:00
|
|
|
private Long userId;
|
|
|
|
|
private String employeeName;
|
|
|
|
|
private Long shiftId;
|
|
|
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
2026-05-14 17:15:47 +08:00
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
2026-05-12 16:29:54 +08:00
|
|
|
private Date startDate;
|
|
|
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
2026-05-14 17:15:47 +08:00
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
2026-05-12 16:29:54 +08:00
|
|
|
private Date endDate;
|
2026-05-15 13:13:34 +08:00
|
|
|
|
|
|
|
|
private Integer p1LateMinutes;
|
|
|
|
|
private Integer p1EarlyMinutes;
|
|
|
|
|
private String p1Status;
|
|
|
|
|
private BigDecimal p1Deduct;
|
|
|
|
|
|
|
|
|
|
private Integer p2LateMinutes;
|
|
|
|
|
private Integer p2EarlyMinutes;
|
|
|
|
|
private String p2Status;
|
|
|
|
|
private BigDecimal p2Deduct;
|
|
|
|
|
|
|
|
|
|
private String absentType;
|
|
|
|
|
private Integer continuousAbsentDays;
|
|
|
|
|
private BigDecimal totalDeduct;
|
|
|
|
|
private String overallStatus;
|
|
|
|
|
private String remark;
|
2026-05-12 16:29:54 +08:00
|
|
|
}
|