From d93356927d8a0a5a91963c28d461d9107562d759 Mon Sep 17 00:00:00 2001
From: xin <1099200748@qq.com>
Date: Fri, 30 May 2025 17:38:26 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/xin'

---
 oying-system/src/main/java/com/oying/modules/pc/category/domain/dto/PlatformCategoryUpdateRequest.java |   24 ++++++++++++++++++++++++
 1 files changed, 24 insertions(+), 0 deletions(-)

diff --git a/oying-system/src/main/java/com/oying/modules/pc/category/domain/dto/PlatformCategoryUpdateRequest.java b/oying-system/src/main/java/com/oying/modules/pc/category/domain/dto/PlatformCategoryUpdateRequest.java
new file mode 100644
index 0000000..be896e5
--- /dev/null
+++ b/oying-system/src/main/java/com/oying/modules/pc/category/domain/dto/PlatformCategoryUpdateRequest.java
@@ -0,0 +1,24 @@
+package com.oying.modules.pc.category.domain.dto;
+
+import com.oying.modules.pc.category.domain.PlatformCategory;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+import javax.validation.constraints.NotBlank;
+
+@Data
+public class PlatformCategoryUpdateRequest {
+
+    @ApiModelProperty(value = "类目名称", example = "超市")
+    private String name;
+
+    @ApiModelProperty(value = "排序权重", example = "1")
+    private Integer sortWeight;
+
+    @ApiModelProperty(value = "上传类目图标文件ID", example = "2682827376555999239484")
+    private Long iconUploadFileId;
+
+    @ApiModelProperty(value = "是否启用", example = "1")
+    private int active;
+
+}

--
Gitblit v1.9.3