package com.ruoyi.production.bean.vo; import com.fasterxml.jackson.annotation.JsonFormat; import com.ruoyi.production.pojo.ProductionOrderPickRecord; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; import lombok.EqualsAndHashCode; import java.time.LocalDateTime; @Data @EqualsAndHashCode(callSuper = true) @Schema(name = "ProductionOrderPickRecordVo", description = "已领料详情") public class ProductionOrderPickRecordVo extends ProductionOrderPickRecord { @Schema(description = "工序名称") private String operationName; @Schema(description = "产品名称") private String productName; @Schema(description = "型号") private String model; @Schema(description = "单位") private String unit; @Schema(description = "补料人") private String supplementUserName; @Schema(description = "补料日期") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") private LocalDateTime supplementTime; }