| 
									
										
										
										
											2016-04-13 23:16:07 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class CQ extends CI_Model{ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function __construct(){ | 
					
						
							|  |  |  |         // Call the Model constructor
 | 
					
						
							|  |  |  |         parent::__construct(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function get_zones(){ | 
					
						
							|  |  |  |         $data = $this->db->query( | 
					
						
							|  |  |  |             "select COL_CQZ, count(COL_CQZ)
 | 
					
						
							| 
									
										
										
										
											2019-06-18 00:44:50 +08:00
										 |  |  |             from ".$this->config->item('table_name')." | 
					
						
							| 
									
										
										
										
											2016-04-13 23:16:07 +08:00
										 |  |  |             where COL_CQZ is not null | 
					
						
							|  |  |  |             group by COL_CQZ order by COL_CQZ"
 | 
					
						
							|  |  |  |         ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $data->result(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |