| | |
| | | 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") |
| | | private Long productProcessRouteItemId; |
| | | |
| | | @Schema(description = "工单id") |
| | | private Long workOrderId; |
| | | |
| | | @Schema(description = "生产工序工单id") |
| | | private Long productionOperationTaskId; |
| | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime updateTime; |
| | | |
| | | @Schema(description = "租户ID") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long tenantId; |
| | | @Schema(description = "创建用户") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer createUser; |
| | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | |
| | | @Schema(description = "工时") |
| | | private BigDecimal workHour; |
| | | |
| | | } |