24 lines
584 B
PHP
24 lines
584 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
/**
|
|
* Created by Vim.
|
|
* User: lcc
|
|
* Date: 2021/09/22
|
|
* Time: 16:24
|
|
*/
|
|
class App_liche_orders_model extends HD_Model{
|
|
private $table_name = 'lc_app_liche_orders';
|
|
|
|
private $type_arr = [ 1 => '定金', 2 => '委托服务费' , 3 => '尾款' ,4 => '意向金' ,5 => '后台添加',6 => '车款'];
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct($this->table_name, 'default');
|
|
}
|
|
|
|
//获取类型
|
|
public function get_type_arr(){
|
|
return $this->type_arr;
|
|
}
|
|
}
|