package cn.iocoder.yudao.module.mes.controller.admin.wm.equipmentreceipt.vo.line; import cn.iocoder.yudao.framework.common.pojo.PageParam; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; @Schema(description = "管理后台 - MES 设备入库单行分页 Request VO") @Data public class MesWmEquipmentReceiptLinePageReqVO extends PageParam { @Schema(description = "入库单编号", example = "1") private Long receiptId; @Schema(description = "设备台账编号", example = "1") private Long machineryId; @Schema(description = "设备物料编号", example = "1") private Long itemId; }