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