<?php
class Admapp_model extends CI_Model {
protected $messages;
protected $errors;
function __construct()
{
parent::__construct();
$this->erpdb = $this->load->database('test',true);
$this->sysdb = $this->load->database('default',true);
$this->load->helper('cookie');
$this->load->helper('date');
$this->load->library('session');
}
// 获取 erp 服务器的职员信息
public function erp_emps(){
$this->erpdb ->select('fitemid ,fname ,fdeleted ,fdepartmentid')
->from('t_Emp');
return $erpdb->get()->result();
}