Model_zzququeu9_logs.php 560 B

1234567891011121314151617181920212223242526272829
  1. <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
  2. class Model_zzququeu9_logs extends Lin_Model
  3. {
  4. function __construct(){
  5. parent::__construct();
  6. $this->load->database();
  7. $this->table = 'zzququeu9_logs';
  8. $this->load_table('zzququeu9_logs');
  9. }
  10. public function getOneType(){
  11. return [
  12. 1=>"调出单",
  13. 2=>"销售单",
  14. 3=>"采购单",
  15. 4=>'标准出货',
  16. 5=>'标准收货'
  17. ];
  18. }
  19. public function getTwoType(){
  20. return [
  21. 1=>'创建',
  22. 2=>'提交',
  23. 3=>'审核'
  24. ];
  25. }
  26. }