Model_bhsq.php 414 B

12345678910111213141516171819202122
  1. <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
  2. class Model_bhsq extends Lin_Model
  3. {
  4. function __construct(){
  5. parent::__construct();
  6. $this->load->database();
  7. $this->table = 'bhsq';
  8. $this->load_table('bhsq');
  9. }
  10. public function getSqStatus(){
  11. return [
  12. '0'=>'已取消',
  13. '1'=>"待发布",
  14. '2'=>"待审核",
  15. '3'=>"驳回重申",
  16. '4'=>"已审核",
  17. ];
  18. }
  19. }