27 lines
562 B
PHP
27 lines
562 B
PHP
<?php
|
|
/**
|
|
* Created by Vim
|
|
* User: lcc
|
|
* Date: 2021/07/09
|
|
* Time: 13:47
|
|
*/
|
|
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
class Receiver_orders_model extends HD_Model
|
|
{
|
|
private $table_name = 'lc_receiver_orders';
|
|
|
|
private $status_arr = [ 0 => '合同签订',1 => '办理分期',2 => '申请开票',3 => '交付确认', 4 => '申请退款'];
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct($this->table_name, 'default');
|
|
}
|
|
|
|
public function get_status(){
|
|
return $this->status_arr;
|
|
}
|
|
|
|
}
|