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); + +