| 123456789101112131415161718 | 
							- <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); 
 
- class Model_caiwusfh extends Lin_Model 
 
- {
 
- 	function __construct(){
 
- 	parent::__construct();
 
- 	$this->load->database();
 
- 	$this->table = 'caiwusfh';
 
-     $this->load_table('caiwusfh');
 
- }
 
- 	 public function get_ht($ht)
 
- 	{
 
- 		return  $this->find("ht = '$ht'");	
 
- 	}
 
- 	public function get_orderno($orderno)
 
- 	{
 
- 		return  $this->find("orderno = '$orderno'");	
 
- 	}
 
- }  //end class
 
 
  |