package cn.iocoder.yudao.module.mes.controller.admin.wm.equipmentreceipt.vo.line;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.time.LocalDateTime;
|
|
@Schema(description = "管理后台 - MES 设备入库单行 Response VO")
|
@Data
|
public class MesWmEquipmentReceiptLineRespVO {
|
|
@Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
private Long id;
|
|
@Schema(description = "入库单编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
private Long receiptId;
|
|
@Schema(description = "设备台账编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
private Long machineryId;
|
|
@Schema(description = "设备编码")
|
private String machineryCode;
|
|
@Schema(description = "设备名称")
|
private String machineryName;
|
|
@Schema(description = "设备物料编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
private Long itemId;
|
|
@Schema(description = "物料编码")
|
private String itemCode;
|
|
@Schema(description = "物料名称")
|
private String itemName;
|
|
@Schema(description = "规格型号")
|
private String specification;
|
|
@Schema(description = "计量单位名称")
|
private String unitMeasureName;
|
|
@Schema(description = "入库数量", example = "1.00")
|
private BigDecimal quantity;
|
|
@Schema(description = "备注", example = "备注")
|
private String remark;
|
|
@Schema(description = "创建时间")
|
private LocalDateTime createTime;
|
|
}
|