From 16f4bb3c28fc85cffcc511718c903ada9fdab134 Mon Sep 17 00:00:00 2001
From: huang <1532065656@qq.com>
Date: 星期五, 26 十二月 2025 16:59:45 +0800
Subject: [PATCH] 调用mes导入工程参数修改,Excel表数据流程卡号一致;增加读取层号/工程号方法; 工程号一致覆盖更新

---
 mes-processes/mes-plcSend/src/main/java/com/mes/device/request/DeviceGlassFeedRequest.java |   18 +++++++++---------
 1 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/mes-processes/mes-plcSend/src/main/java/com/mes/device/request/DeviceGlassFeedRequest.java b/mes-processes/mes-plcSend/src/main/java/com/mes/device/request/DeviceGlassFeedRequest.java
index b35348d..659468e 100644
--- a/mes-processes/mes-plcSend/src/main/java/com/mes/device/request/DeviceGlassFeedRequest.java
+++ b/mes-processes/mes-plcSend/src/main/java/com/mes/device/request/DeviceGlassFeedRequest.java
@@ -1,7 +1,7 @@
 package com.mes.device.request;
 
-import io.swagger.v3.oas.annotations.media.ArraySchema;
-import io.swagger.v3.oas.annotations.media.Schema;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
 import lombok.Data;
 
 import javax.validation.constraints.NotEmpty;
@@ -12,23 +12,23 @@
  * 鐜荤拑鍐欏叆璇锋眰
  */
 @Data
-@Schema(name = "DeviceGlassFeedRequest", description = "璁惧鐜荤拑鍐欏叆璇锋眰")
+@ApiModel(value = "DeviceGlassFeedRequest", description = "璁惧鐜荤拑鍐欏叆璇锋眰")
 public class DeviceGlassFeedRequest {
 
     @NotNull
-    @Schema(description = "璁惧ID", required = true)
-    private Long deviceId;
+    @ApiModelProperty(value = "璁惧ID", required = true)
+    private Long id;
 
-    @ArraySchema(schema = @Schema(description = "鐜荤拑ID鍒楄〃", example = "GLS001"), minItems = 1)
+    @ApiModelProperty(value = "鐜荤拑ID鍒楄〃", example = "GLS001")
     private List<String> glassIds;
 
-    @Schema(description = "杩涚墖浣嶇疆鏍囪瘑锛堜笌鎺у埗鍙傛暟涓殑 positionMappings 瀵瑰簲锛�")
+    @ApiModelProperty(value = "杩涚墖浣嶇疆鏍囪瘑锛堜笌鎺у埗鍙傛暟涓殑 positionMappings 瀵瑰簲锛�")
     private String positionCode;
 
-    @Schema(description = "鐩存帴鎸囧畾鐨勪綅缃�硷紙浼樺厛绾ч珮浜� positionCode锛�")
+    @ApiModelProperty(value = "鐩存帴鎸囧畾鐨勪綅缃�硷紙浼樺厛绾ч珮浜� positionCode锛�")
     private Integer positionValue;
 
-    @Schema(description = "鏄惁鑷姩鍐欏叆璇锋眰瀛�", defaultValue = "true")
+    @ApiModelProperty(value = "鏄惁鑷姩鍐欏叆璇锋眰瀛�", example = "true")
     private Boolean triggerRequest = true;
 }
 

--
Gitblit v1.8.0