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.
39 lines
830 B
39 lines
830 B
<?php
|
|
/**
|
|
*
|
|
*/
|
|
include_once SERVER_ROOT . '/data/dBase.php';
|
|
|
|
class dOrder extends dBase {
|
|
protected $fieldlist = array(
|
|
'order_list' => array(
|
|
'id',
|
|
'order_sn',
|
|
'order_status',
|
|
'group_status',
|
|
'refund_status',
|
|
'after_sales_status',
|
|
'pay_amount',
|
|
'pay_time',
|
|
'shop_id',
|
|
'goods_id',
|
|
'sku_id',
|
|
'goods_price',
|
|
'goods_count',
|
|
'uid',
|
|
'urge_shipping_time',
|
|
'last_ship_time',
|
|
'buyer_memo',
|
|
'risk_control_status'
|
|
),
|
|
'sync_data_modify_time' => array(
|
|
'id',
|
|
'pdp_modified'
|
|
),
|
|
);
|
|
|
|
protected $primary_keys = array(
|
|
'order_list' => 'id',
|
|
);
|
|
}
|
|
|
|
|