| 123456789101112131415161718 | <?phpreturn [    'name' => '回收站',    'struct' => [        'table' => [            'name'      => '表名',            'type'      => 'varchar(80)',        ],        'table_id' => [            'name'      => '表id',            'type'      => 'int(11)',        ],        'content' => [            'name'      => '表内容',            'type'      => 'text(255)',        ],    ],];
 |