| 123456789101112131415161718 | <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Model_yswaybill extends Lin_Model {	function __construct(){	parent::__construct();	$this->load->database();	$this->table = 'yswaybill';    $this->load_table('yswaybill');}	public function get_number($number)	{		return  $this->find("number = '$number'");		}	public function get_waybill($waybill)	{		return  $this->find("waybill = '$waybill'");		}}  //end class
 |