| <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Model_pay extends Lin_Model {	function __construct(){	parent::__construct();	$this->load->database();	$this->table = 'pay';    $this->load_table('pay');}	/** 通过名称查找 */	public function get_typeclass($typeclass)	{		return  $this->find("typeclass = '$typeclass'");		}}  //end class
 |