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