| | |
| | | package com.ruoyi.performance.pojo; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
| | | import com.alibaba.excel.annotation.ExcelIgnore; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.baomidou.mybatisplus.annotation.FieldFill; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableLogic; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | @Data |
| | | @TableName("auxiliary_working_hours_day") |
| | | @ApiModel(value = "AuxiliaryWorkingHoursDay对象", description = "日工时管理的辅助工时") |
| | | @ExcelIgnoreUnannotated |
| | | public class AuxiliaryWorkingHoursDay implements Serializable { |
| | | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | @ExcelIgnore |
| | | private Integer id; |
| | | |
| | | @ApiModelProperty("姓名id") |
| | | @ExcelIgnore |
| | | private Integer nameUser; |
| | | |
| | | @ApiModelProperty("编号") |
| | | @ExcelProperty(index = 2, value = "编号") |
| | | @ExcelProperty(value = "编号") |
| | | private String number; |
| | | |
| | | @ApiModelProperty("辅助项目名称") |
| | | @ExcelProperty(index = 3, value = "辅助项目名称") |
| | | @ExcelProperty(value = "辅助项目名称") |
| | | private String auxiliaryProject; |
| | | |
| | | @ApiModelProperty("核准工时") |
| | | @ExcelProperty(index = 5, value = "核准工时") |
| | | private BigDecimal approvedWorkingHour; |
| | | @ExcelProperty(value = "核准工时") |
| | | private Double approvedWorkingHour; |
| | | |
| | | @ApiModelProperty("数量") |
| | | @ExcelProperty(index = 6, value = "数量") |
| | | private Integer amount; |
| | | @ExcelProperty(value = "数量") |
| | | private Double amount; |
| | | |
| | | @ApiModelProperty("辅助工时") |
| | | @ExcelProperty(index = 7, value = "辅助工时") |
| | | private BigDecimal nonproductiveTime; |
| | | @ExcelProperty(value = "辅助工时") |
| | | private Double nonproductiveTime; |
| | | |
| | | @ApiModelProperty("辅助说明") |
| | | @ExcelProperty(index = 8, value = "辅助说明") |
| | | @ExcelProperty(value = "辅助说明") |
| | | private String remarks; |
| | | |
| | | @ApiModelProperty("复核人") |
| | | @ExcelProperty(index = 9, value = "复核人") |
| | | private String reviewer; |
| | | |
| | | @ApiModelProperty("复核数量") |
| | | @ExcelProperty(index = 10, value = "复核数量") |
| | | private Integer reviewerNumber; |
| | | |
| | | @ApiModelProperty("复核工时") |
| | | @ExcelProperty(index = 11, value = "复核工时") |
| | | private BigDecimal reviewerNonproductiveTime; |
| | | |
| | | @ApiModelProperty("复核说明") |
| | | @ExcelProperty(index = 12, value = "复核说明") |
| | | private String reviewerRemark; |
| | | |
| | | @ApiModelProperty("年") |
| | | @ExcelProperty(index = 13, value = "年") |
| | | private String year; |
| | | |
| | | @ApiModelProperty("班次") |
| | | @ExcelProperty(index = 14, value = "班次") |
| | | @ExcelProperty(value = "班次") |
| | | private String shift; |
| | | |
| | | @ApiModelProperty("周次") |
| | | @ExcelProperty(index = 15, value = "周次") |
| | | @ExcelProperty(value = "周次") |
| | | private String week; |
| | | |
| | | @ApiModelProperty("星期") |
| | | @ExcelProperty(index = 16, value = "星期") |
| | | @ExcelProperty(value = "星期") |
| | | private String weekDay; |
| | | |
| | | @ApiModelProperty("复核人") |
| | | @ExcelProperty(value = "复核人") |
| | | private String reviewer; |
| | | |
| | | @ApiModelProperty("复核数量") |
| | | @ExcelProperty(value = "复核数量") |
| | | private Double reviewerNumber; |
| | | |
| | | @ApiModelProperty("复核工时") |
| | | @ExcelProperty(value = "复核工时") |
| | | private Double reviewerNonproductiveTime; |
| | | |
| | | @ApiModelProperty("复核说明") |
| | | @ExcelProperty(value = "复核说明") |
| | | private String reviewerRemark; |
| | | |
| | | @ApiModelProperty("年") |
| | | @ExcelProperty(value = "年") |
| | | private String year; |
| | | |
| | | @ApiModelProperty("创建时间") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | @ExcelIgnore |
| | | private LocalDateTime createTime; |
| | | |
| | | @ApiModelProperty("修改时间") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | @ExcelIgnore |
| | | private LocalDateTime updateTime; |
| | | |
| | | @ApiModelProperty("创建人id") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | @ExcelIgnore |
| | | private Integer createUser; |
| | | |
| | | @ApiModelProperty("修改人id") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | @ExcelIgnore |
| | | private Integer updateUser; |
| | | |
| | | @ApiModelProperty("状态") |
| | | @ExcelProperty(index = 4, value = "状态") |
| | | @ExcelProperty(value = "状态") |
| | | @ExcelIgnore |
| | | private String state; |
| | | |
| | | @ApiModelProperty("日期") |
| | | @ExcelProperty(index = 17, value = "日期") |
| | | @ExcelProperty(value = "日期") |
| | | private String dateTime; |
| | | |
| | | |
| | | } |