2/14 高拍仪设置1.0

dev_fifo_z
wangwei 5 months ago
parent 3ec2a73b91
commit 9558437f4f

@ -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;
}

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

Loading…
Cancel
Save