Model_bhdcd.php 478 B

1234567891011121314151617181920
  1. <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
  2. class Model_bhdcd extends Lin_Model
  3. {
  4. function __construct(){
  5. parent::__construct();
  6. $this->load->database();
  7. $this->table = 'bhdcd';
  8. $this->load_table('bhdcd');
  9. }
  10. public function getStatus(){
  11. return [
  12. 0 => '调入单待查询',
  13. 1 => '调入单已查询',
  14. 2 => '调入单已审核',
  15. 3 => '调入单erp入库'
  16. ];
  17. }
  18. }