| 1234567891011121314151617181920212223242526 | <?phpreturn [    'name' => '账户模块记录表',    'struct' => [        'uid' => [            'name'      => '账户id',            'type'      => 'int(11)',        ],        'system_id' => [            'name'      => '系统id',            'type'      => 'int(11)',        ],        'info_id' => [            'name'      => '系统信息表id',            'type'      => 'int(11)',        ],        'module_id' => [            'name'      => '模块id',            'type'      => 'int(11)',        ],        'data_id' => [            'name'      => '模块数据id',            'type'      => 'int(11)',        ],    ],];
 |