From 1ab2b329a40decba8ff7eefbeb158ff259aceb6d Mon Sep 17 00:00:00 2001
From: liyong <18434998025@163.com>
Date: 星期二, 14 七月 2026 15:23:34 +0800
Subject: [PATCH] 追溯+分类接口

---
 yudao-module-mdm/src/main/java/cn/iocoder/yudao/module/mdm/controller/admin/item/vo/MdmItemPageReqVO.java |   41 +++++++++++++++++++++++++++++++++++++++++
 1 files changed, 41 insertions(+), 0 deletions(-)

diff --git a/yudao-module-mdm/src/main/java/cn/iocoder/yudao/module/mdm/controller/admin/item/vo/MdmItemPageReqVO.java b/yudao-module-mdm/src/main/java/cn/iocoder/yudao/module/mdm/controller/admin/item/vo/MdmItemPageReqVO.java
new file mode 100644
index 0000000..93e87b5
--- /dev/null
+++ b/yudao-module-mdm/src/main/java/cn/iocoder/yudao/module/mdm/controller/admin/item/vo/MdmItemPageReqVO.java
@@ -0,0 +1,41 @@
+package cn.iocoder.yudao.module.mdm.controller.admin.item.vo;
+
+import cn.iocoder.yudao.framework.common.pojo.PageParam;
+import io.swagger.v3.oas.annotations.media.Schema;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.ToString;
+
+import java.time.LocalDateTime;
+
+@Schema(description = "绠$悊鍚庡彴 - MDM 鐗╂枡鍒嗛〉 Request VO")
+@Data
+@EqualsAndHashCode(callSuper = true)
+@ToString(callSuper = true)
+public class MdmItemPageReqVO extends PageParam {
+
+    @Schema(description = "鐗╂枡缂栫爜", example = "ITEM001")
+    private String code;
+
+    @Schema(description = "鐗╂枡鍚嶇О", example = "铻轰笣")
+    private String name;
+
+    @Schema(description = "鐗╂枡鏉$爜", example = "12345678")
+    private String barCode;
+
+    @Schema(description = "鐗╂枡鍒嗙被缂栧彿", example = "1")
+    private Long categoryId;
+
+    @Schema(description = "鐗╂枡绫诲瀷", example = "1")
+    private Integer itemType;
+
+    @Schema(description = "鐘舵��", example = "0")
+    private Integer status;
+
+    @Schema(description = "鍝佺墝缂栧彿", example = "1")
+    private Long brandId;
+
+    @Schema(description = "鍒涘缓鏃堕棿")
+    private LocalDateTime[] createTime;
+
+}
\ No newline at end of file

--
Gitblit v1.9.3