package com.ruoyi.production.bean.vo;
|
|
import com.ruoyi.production.pojo.ProductionOrderPickRecord;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
@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;
|
}
|