From 7f4fff37c1012a4bc16bbbb2319034f49b440816 Mon Sep 17 00:00:00 2001 From: funny <834502597@qq.com> Date: Thu, 16 Apr 2026 13:31:48 +0800 Subject: [PATCH] =?UTF-8?q?=E7=89=A9=E6=96=99=E8=80=81=E9=BC=A0=E5=9B=BE?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../common/pojo/qo/MaterialPdfExportQO.java | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 nflg-wms-common/src/main/java/com/nflg/wms/common/pojo/qo/MaterialPdfExportQO.java diff --git a/nflg-wms-common/src/main/java/com/nflg/wms/common/pojo/qo/MaterialPdfExportQO.java b/nflg-wms-common/src/main/java/com/nflg/wms/common/pojo/qo/MaterialPdfExportQO.java new file mode 100644 index 00000000..c6d74d0e --- /dev/null +++ b/nflg-wms-common/src/main/java/com/nflg/wms/common/pojo/qo/MaterialPdfExportQO.java @@ -0,0 +1,26 @@ +package com.nflg.wms.common.pojo.qo; + +import jakarta.validation.constraints.NotEmpty; +import jakarta.validation.constraints.NotNull; +import lombok.Data; + +import java.util.List; + +/** + * 老鼠图PDF导出请求参数 + */ +@Data +public class MaterialPdfExportQO { + + /** + * 物料明细ID列表 + */ + @NotEmpty(message = "物料ID不能为空") + private List ids; + + /** + * 每页老鼠图数量(2/4/6/8/9,默认6) + */ + @NotNull(message = "每页数量不能为空") + private Integer perPage; +}