| | |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | |
| | | @Getter |
| | | @Setter |
| | | @TableName("personal_attendance_records") |
| | | @ApiModel(value = "PersonalAttendanceRecords对象", description = "") |
| | | @Schema(name = "PersonalAttendanceRecords对象", description = "") |
| | | public class PersonalAttendanceRecords implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | @ApiModelProperty("员工在职id") |
| | | @Schema(description = "员工在职id") |
| | | private Long staffOnJobId; |
| | | |
| | | @ApiModelProperty("日期") |
| | | @Schema(description = "日期") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = "日期", sort = 1, dateFormat = "yyyy-MM-dd") |
| | | private LocalDate date; |
| | | |
| | | @ApiModelProperty("工作开始时间") |
| | | @Schema(description = "工作开始时间") |
| | | @JsonFormat(pattern = "HH:mm") |
| | | @DateTimeFormat(pattern = "HH:mm") |
| | | @Excel(name = "上班时间", sort = 5, dateFormat = "HH:mm") |
| | | private LocalDateTime workStartAt; |
| | | |
| | | @ApiModelProperty("工作结束时间") |
| | | @Schema(description = "工作结束时间") |
| | | @JsonFormat(pattern = "HH:mm") |
| | | @DateTimeFormat(pattern = "HH:mm") |
| | | @Excel(name = "下班时间", sort = 6, dateFormat = "HH:mm") |
| | | private LocalDateTime workEndAt; |
| | | |
| | | @ApiModelProperty("工作时长") |
| | | @Schema(description = "工作时长") |
| | | @Excel(name = "工时(小时)", sort = 7) |
| | | private BigDecimal workHours; |
| | | |
| | | @ApiModelProperty("状态 0正常 1迟到 2早退") |
| | | @Excel(name = "状态", sort = 8,readConverterExp = "0=正常,1=迟到,2=早退") |
| | | private Byte status; |
| | | @Schema(description = "状态 0正常 1迟到 2早退 3迟到早退 4缺勤") |
| | | @Excel(name = "状态", sort = 8,readConverterExp = "0=正常,1=迟到,2=早退,3=迟到、早退,4=缺勤") |
| | | private Integer status; |
| | | |
| | | @ApiModelProperty("备注") |
| | | @Schema(description = "备注") |
| | | @Excel(name = "备注", sort = 9) |
| | | private String remark; |
| | | |
| | | @ApiModelProperty("租户id") |
| | | @Schema(description = "租户id") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long tenantId; |
| | | |
| | | @ApiModelProperty("录入时间") |
| | | @Schema(description = "录入时间") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private LocalDateTime createTime; |
| | | |
| | | @ApiModelProperty("更新时间") |
| | | @Schema(description = "更新时间") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private LocalDateTime updateTime; |
| | | @Schema(description = "创建用户") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer createUser; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | |
| | | } |