From 111968bd764766bf83cf531e4a04a89b3343b9a6 Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Thu, 26 Dec 2024 14:16:24 +0800 Subject: [PATCH] =?UTF-8?q?12/26=20=E9=80=89=E5=85=A5=E8=8D=AF=E5=93=81?= =?UTF-8?q?=E8=AE=A1=E9=87=8F=E5=8D=95=E4=BD=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/glxp/api/controller/basic/UdiRlSupController.java | 1 + src/main/java/com/glxp/api/req/basic/SupplementRequest.java | 3 +++ 2 files changed, 4 insertions(+) diff --git a/src/main/java/com/glxp/api/controller/basic/UdiRlSupController.java b/src/main/java/com/glxp/api/controller/basic/UdiRlSupController.java index b58b9535..3b92aa90 100644 --- a/src/main/java/com/glxp/api/controller/basic/UdiRlSupController.java +++ b/src/main/java/com/glxp/api/controller/basic/UdiRlSupController.java @@ -360,6 +360,7 @@ public class UdiRlSupController extends BaseController { udiRelevanceEntity.setProductsType(2); udiRelevanceEntity.setUpdateTime(new Date()); udiRelevanceEntity.setDetailSort(udiInfoExportRequest.getSupplementRequest().getDetailSort()); + udiRelevanceEntity.setDetailSort(udiInfoExportRequest.getSupplementRequest().getDistributeLevel()); udiRelevanceService.updateUdiRelevance(udiRelevanceEntity); UdiProductEntity udiProductEntity = new UdiProductEntity(); udiProductEntity.setProductsType(2); diff --git a/src/main/java/com/glxp/api/req/basic/SupplementRequest.java b/src/main/java/com/glxp/api/req/basic/SupplementRequest.java index 4c9893bd..e672ccef 100644 --- a/src/main/java/com/glxp/api/req/basic/SupplementRequest.java +++ b/src/main/java/com/glxp/api/req/basic/SupplementRequest.java @@ -79,4 +79,7 @@ public class SupplementRequest { */ private Integer detailSort; + private Integer distributeLevel; + + }