getInfoById($id); } static public function getInfoByKey($openId) { $Table_baseconfig = new Table_baseconfig(); return $Table_baseconfig->getInfoByKey($openId); } static public function add($attrs) { $Table_baseconfig = new Table_baseconfig(); $id = $Table_baseconfig->add($attrs); return $id; } static public function update($id, $attrs) { $Table_baseconfig = new Table_baseconfig(); return $Table_baseconfig->update($id, $attrs); } }