McGansWebsite/admin/application/models/Department_model.php

32 lines
638 B
PHP
Raw Normal View History

2023-01-10 09:41:20 +00:00
<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
class Department_model extends CI_Model {
public function __construct() {
parent::__construct();
}
function dep_list()
{
$this->db->select('*');
$this->db->from('department');
$this->db->where(array('status'=>1));
$query = $this->db->get();
//echo $this->db->last_query();exit;
return $query;
}
2023-01-11 07:17:57 +00:00
function get_dep($id)
{
$this->db->select('*');
$this->db->from('department');
$this->db->where(array('status'=>1,'id'=>$id));
$query = $this->db->get();
//echo $this->db->last_query();exit;
return $query;
}
2023-01-10 09:41:20 +00:00
}