| | |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | |
| | | @Data |
| | |
| | | |
| | | @Schema(description = "报工人员") |
| | | private String userName; |
| | | |
| | | @Schema(description = "使用设备id(device_ledger.id)") |
| | | private Long deviceId; |
| | | |
| | | @Schema(description = "设备名称(冗余)") |
| | | @Excel(name = "使用设备") |
| | | private String deviceName; |
| | | |
| | | @Schema(description = "生产工序工单id") |
| | | private Long productionOperationTaskId; |
| | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | |
| | | @Schema(description = "工时") |
| | | private BigDecimal workHour; |
| | | |
| | | } |