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.

37 lines
760 B

4 days ago
<?php
/**
*
*/
include_once SERVER_ROOT . '/data/dBase.php';
class dWeiboBehavior extends dBase {
protected $fieldlist = array(
'spider_behavior_data' => array(
'id',
'uid',
'wid',
'reposts_count',
'comments_count',
'attitudes_count',
'date',
'created_at',
),
'spider_behavior_delta' => array(
'id',
'uid',
'wid',
'reposts_delta',
'comments_delta',
'attitudes_delta',
'date',
'created_at',
),
);
protected $primary_keys = array(
'spider_behavior_data' => 'id',
'spider_behavior_delta' => 'id',
);
}