| 1234567891011121314151617181920 |
- <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
- class Model_bhsccx extends Lin_Model
- {
- function __construct(){
- parent::__construct();
- $this->load->database();
- $this->table = 'bhsccx';
- $this->load_table('bhsccx');
- }
- public function getCxStatus(){
- return [
- 0=>'未提交',
- 1=>'待审核',
- 2=>'已审核',
- ];
- }
-
- }
|