3 天以前 b852254d90e7d1955db31db154193ec8ee84d8b3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
 
}