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