Model_bhsccx.php 403 B

1234567891011121314151617181920
  1. <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
  2. class Model_bhsccx extends Lin_Model
  3. {
  4. function __construct(){
  5. parent::__construct();
  6. $this->load->database();
  7. $this->table = 'bhsccx';
  8. $this->load_table('bhsccx');
  9. }
  10. public function getCxStatus(){
  11. return [
  12. 0=>'未提交',
  13. 1=>'待审核',
  14. 2=>'已审核',
  15. ];
  16. }
  17. }