Files
OMS/app/material/dbschema/basic_material_conf_special.php
2025-12-28 23:13:25 +08:00

37 lines
1.0 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* Copyright © ShopeX http://www.shopex.cn. All rights reserved.
* See LICENSE file for license details.
*/
$db['basic_material_conf_special'] = array(
'columns' => array(
'bm_id' => array(
'type' => 'int unsigned',
'required' => true,
'width' => 110,
'hidden' => true,
'editable' => false,
'pkey' => true,
),
'openscan' => array(
'type' => 'varchar(20)',
'label' => '是否开启特殊扫码配置',
'editable' => false,
'default' => 'close',
),
'fromposition' => array(
'type' => 'number',
'label' => '开始识别位数',
'editable' => false,
'default' => 0,
),
'toposition' => array(
'type' => 'number',
'label' => '结束识别位数',
'editable' => false,
'default' => 1,
),
),
'comment' => '基础物料特殊扫码配置表',
);