mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
62 lines
2.2 KiB
PHP
62 lines
2.2 KiB
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
$db['export_history'] =
|
||
array(
|
||
'columns' => array(
|
||
'id' => array(
|
||
'label' => 'ID',
|
||
'type' => 'number',
|
||
'required' => true,
|
||
'extra' => 'auto_increment',
|
||
'pkey' => true,
|
||
'in_list' => true,
|
||
'default_in_list' => true,
|
||
'width' => 60,
|
||
'order' => 10,
|
||
),
|
||
'task_name' => array(
|
||
'label' => '任务名称',
|
||
'type' => 'varchar(50)',
|
||
'in_list' => true,
|
||
'default_in_list' => true,
|
||
'width' => 240,
|
||
'order' => 20,
|
||
),
|
||
'op_id' => array(
|
||
'type' => 'table:account@pam',
|
||
'label' => '确认人',
|
||
'editable' => false,
|
||
'width' => 60,
|
||
'filtertype' => 'normal',
|
||
'filterdefault' => true,
|
||
'in_list' => true,
|
||
'default_in_list' => true,
|
||
),
|
||
'create_time' => array(
|
||
'label' => '创建时间',
|
||
'type' => 'time',
|
||
'in_list' => true,
|
||
'default_in_list' => true,
|
||
'width' => 150,
|
||
'order' => 60,
|
||
'default' => 0
|
||
),
|
||
'file_name' => array(
|
||
'label' => '文件名',
|
||
'type' => 'varchar(255)',
|
||
'in_list' => false,
|
||
'default_in_list' => false,
|
||
'width' => 200,
|
||
'order' => 80,
|
||
),
|
||
),
|
||
'comment' => '导出任务历史记录',
|
||
'engine' => 'innodb',
|
||
'version' => '$Rev: 40654 $',
|
||
);
|