订单处理
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

27 lines
491 B

<?php
/**
*
*/
include_once SERVER_ROOT . '/data/dBase.php';
class dOrder extends dBase {
protected $fieldlist = array(
'order_list' => array(
'id',
'order_sn',
'order_status',
'refund_status',
'pay_amount',
'pay_time',
'shop_id',
'goods_id',
'sku_id',
'uid',
),
);
protected $primary_keys = array(
'order_list' => 'id',
);
}