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