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

60 lines
1.2 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['taskid']=array (
'comment' => '交易任务号',
'columns' =>
array (
'task_id' =>
array (
'type' => 'varchar(32)',
'required' => true,
'pkey' => true,
'editable' => false,
'label' => '任务号',
),
'node_id' =>
array (
'type' => 'varchar(20)',
'pkey' => true,
'editable' => false,
'label' => '节点ID',
),
'node_name' =>
array (
'type' => 'varchar(32)',
'editable' => false,
'label' => '节点名称',
),
'taskid_time' =>
array (
'type' => 'varchar(25)',
'label' => '任务创建时间',
'editable' => false,
),
'start_time' =>
array (
'type' => 'varchar(25)',
'label' => '单据开始时间',
'editable' => false,
),
'end_time' =>
array (
'type' => 'varchar(25)',
'label' => '单据结束时间',
'editable' => false,
),
'createtime' =>
array (
'type' => 'time',
'label' => '记录创建时间',
'editable' => false,
),
),
'engine' => 'innodb',
'version' => '$Rev: 44513 $',
);