mirror of
https://github.com/DzzXH/DzzOffice.git
synced 2026-01-23 06:06:49 +08:00
27 lines
451 B
PHP
27 lines
451 B
PHP
<?php
|
|
/*
|
|
* @copyright Leyun internet Technology(Shanghai)Co.,Ltd
|
|
* @license http://www.dzzoffice.com/licenses/license.txt
|
|
* @package DzzOffice
|
|
* @link http://www.dzzoffice.com
|
|
* @author zyx(zyx@dzz.cc)
|
|
*/
|
|
|
|
if(!defined('IN_DZZ')) {
|
|
exit('Access Denied');
|
|
}
|
|
|
|
class table_cache extends dzz_table
|
|
{
|
|
public function __construct() {
|
|
|
|
$this->_table = 'cache';
|
|
$this->_pk = 'cachekey';
|
|
|
|
parent::__construct();
|
|
}
|
|
|
|
}
|
|
|
|
?>
|