Files
Pichome/core/class/table/table_usergroup_field.php
2022-05-02 22:31:35 +08:00

31 lines
595 B
PHP

<?php
/*
* @copyright QiaoQiaoShiDai Internet Technology(Shanghai)Co.,Ltd
* @license https://www.oaooa.com/licenses/
*
* @link https://www.oaooa.com
* @author zyx(zyx@oaooa.com)
*/
if(!defined('IN_OAOOA')) {
exit('Access Denied');
}
class table_usergroup_field extends dzz_table
{
public function __construct() {
$this->_table = 'usergroup_field';
$this->_pk = 'groupid';
parent::__construct();
}
public function fetch_all() {
return DB::fetch_all("SELECT * FROM %t where 1", array($this->_table),$this->_pk);
}
}
?>