| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | |
| | | private BigDecimal completeQuantity; |
| | | |
| | | |
| | | @ApiModelProperty(value = "创建用户") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer createUser; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | |
| | | // 开始报工 |
| | | @TableField(value = "start_product_time") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime startProductTime; |
| | | |
| | | // 结束报工 |
| | | @TableField(value = "end_product_time") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime endProductTime; |
| | | |
| | | |
| | | @ApiModelProperty(value = "报工用户ids") |
| | | private String userIds; |
| | | |
| | | @ApiModelProperty(value = "报工用户names") |
| | | private String userNames; |
| | | |
| | | @ApiModelProperty("机台id") |
| | | private Long deviceId; |
| | | } |