| 12345678910111213141516171819202122 |
- <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
- class Model_bhsq extends Lin_Model
- {
- function __construct(){
- parent::__construct();
- $this->load->database();
- $this->table = 'bhsq';
- $this->load_table('bhsq');
- }
- public function getSqStatus(){
- return [
- '0'=>'已取消',
- '1'=>"待发布",
- '2'=>"待审核",
- '3'=>"驳回重申",
- '4'=>"已审核",
- ];
- }
-
- }
|