mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
70 lines
1.5 KiB
PHP
70 lines
1.5 KiB
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
$db['operation_log']=array (
|
||
'columns' =>
|
||
array (
|
||
'log_id' =>
|
||
array (
|
||
'type' => 'int unsigned',
|
||
'pkey' => true,
|
||
'extra' => 'auto_increment',
|
||
'editable' => false,
|
||
'comment' => '日志ID',
|
||
),
|
||
'op_id' =>
|
||
array (
|
||
'type' => 'table:account@pam',
|
||
'editable' => false,
|
||
'required' => true,
|
||
'comment' => '操作员ID',
|
||
),
|
||
'op_name' =>
|
||
array (
|
||
'type' => 'varchar(30)',
|
||
'editable' => false,
|
||
'in_list' => true,
|
||
'default_in_list' => true,
|
||
'label' => '操作人',
|
||
),
|
||
'operate_time' =>
|
||
array (
|
||
'type' => 'time',
|
||
'required' => true,
|
||
'editable' => false,
|
||
'in_list' => true,
|
||
'default_in_list' => true,
|
||
'label' => '时间',
|
||
),
|
||
'archive_time' =>
|
||
array (
|
||
'type' => 'time',
|
||
'editable' => false,
|
||
'label' => '归档时间',
|
||
'in_list' => true,
|
||
'default_in_list' => true,
|
||
),
|
||
'memo' =>
|
||
array (
|
||
'type' => 'text',
|
||
'editable' => false,
|
||
'in_list' => true,
|
||
'default_in_list' => true,
|
||
'label' => '内容',
|
||
),
|
||
'ip' =>
|
||
array (
|
||
'type' => 'varchar(15)',
|
||
'editable' => false,
|
||
'in_list' => true,
|
||
'default_in_list' => true,
|
||
'label' => 'IP',
|
||
),
|
||
),
|
||
'comment' => '归档操作员操作记录表',
|
||
'engine' => 'innodb',
|
||
'version' => '$Rev: $',
|
||
); |