From 9558437f4f84544b8ed8371cf616c86f6aa1b699 Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Fri, 14 Feb 2025 18:24:16 +0800 Subject: [PATCH] =?UTF-8?q?2/14=20=E9=AB=98=E6=8B=8D=E4=BB=AA=E8=AE=BE?= =?UTF-8?q?=E7=BD=AE1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/glxp/api/entity/collect/IoCollectSet.java | 13 +++++++++++++ src/main/resources/schemas/schema_v2.4.sql | 13 +++++++++++++ 2 files changed, 26 insertions(+) diff --git a/src/main/java/com/glxp/api/entity/collect/IoCollectSet.java b/src/main/java/com/glxp/api/entity/collect/IoCollectSet.java index c1aa604d1..1b99312ba 100644 --- a/src/main/java/com/glxp/api/entity/collect/IoCollectSet.java +++ b/src/main/java/com/glxp/api/entity/collect/IoCollectSet.java @@ -108,5 +108,18 @@ public class IoCollectSet implements Serializable { @ApiModelProperty(value = "工控扫码数量") private Integer ipcMaxCount; + @TableField(value = "fixedCount") + @ApiModelProperty(value = "高拍仪扫码数量") + private Integer fixedCount; + + @TableField(value = "autoDecode") + @ApiModelProperty(value = "高拍仪是否自动解码 1:自动 0:手动") + private Integer autoDecode; + + @TableField(value = "outputMode") + @ApiModelProperty(value = "高拍仪输出顺序 0:不排序,1:从左到右,2:从右到左,3:从上到下,4:从下到上。") + private Integer outputMode; + + private static final long serialVersionUID = 1L; } diff --git a/src/main/resources/schemas/schema_v2.4.sql b/src/main/resources/schemas/schema_v2.4.sql index 0f4382501..8151823cd 100644 --- a/src/main/resources/schemas/schema_v2.4.sql +++ b/src/main/resources/schemas/schema_v2.4.sql @@ -5232,3 +5232,16 @@ CALL Pro_Temp_ColumnWork('io_collect_set', 'ipcMaxCount', 'int NULL DEFAULT NULL COMMENT ''PDA扫码数量''', 1); +CALL Pro_Temp_ColumnWork('io_collect_set', 'fixedCount', + 'int NULL DEFAULT NULL COMMENT ''高拍仪扫码数量''', + 1); + +CALL Pro_Temp_ColumnWork('io_collect_set', 'autoDecode', + 'tinyint NULL DEFAULT NULL COMMENT ''高拍仪是否自动解码 1:自动 0:手动''', + 1); + +CALL Pro_Temp_ColumnWork('io_collect_set', 'outputMode', + 'tinyint NULL DEFAULT NULL COMMENT ''高拍仪输出顺序 0:不排序,1:从左到右,2:从右到左,3:从上到下,4:从下到上。''', + 1); + +