mirror of
https://github.com/DzzXH/DzzOffice.git
synced 2026-03-08 15:22:43 +08:00
26 lines
444 B
PHP
26 lines
444 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_thame extends dzz_table
|
||
|
|
{
|
||
|
|
public function __construct() {
|
||
|
|
|
||
|
|
$this->_table = 'thame';
|
||
|
|
$this->_pk = 'id';
|
||
|
|
|
||
|
|
parent::__construct();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
?>
|