30 lines
686 B
PHP
30 lines
686 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
/**
|
|
* Notes:订单管理
|
|
*/
|
|
class Order_purchase_model extends HD_Model
|
|
{
|
|
private $table_name = 'lc_order_purchase';
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct($this->table_name, 'default');
|
|
}
|
|
|
|
/**
|
|
* Notes:根据订单状态值补充更详细的状态信息
|
|
* Created on: 2019/7/13 14:52
|
|
* Created by: dengbw
|
|
* @return array
|
|
*/
|
|
public function statusDetailAry()
|
|
{
|
|
return array('1' => array("11" => '待支付', "12" => '超时未支付', "13" => '已取消'),
|
|
'2' => array(),
|
|
'3' => array()
|
|
);
|
|
}
|
|
}
|