28 lines
587 B
PHP
28 lines
587 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
/**
|
|
* Notes:车辆调拨
|
|
* Created on: 2021/12/17 16:43
|
|
* Created by: dengbw
|
|
*/
|
|
class Items_transfer_admin_model extends HD_Model
|
|
{
|
|
private $table_name = 'lc_items_transfer_admin';
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct($this->table_name, 'default');
|
|
}
|
|
|
|
/**
|
|
* Notes:类型
|
|
* Created on: 2021/12/17 16:47
|
|
* Created by: dengbw
|
|
* @return array
|
|
*/
|
|
public function typeAry()
|
|
{
|
|
return array(1 => '提车人', 2 => '接车人');
|
|
}
|
|
} |