Model_zzququeu9_logs.php 612 B

1234567891011121314151617181920212223242526272829303132
  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. 6=>'调入单',
  18. 7=>'生产入库单',
  19. ];
  20. }
  21. public function getTwoType(){
  22. return [
  23. 1=>'创建',
  24. 2=>'提交',
  25. 3=>'审核'
  26. ];
  27. }
  28. }