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.
34 lines
663 B
34 lines
663 B
<?php
|
|
/**
|
|
*
|
|
*/
|
|
include_once SERVER_ROOT . '/data/dBase.php';
|
|
|
|
class dWeibo extends dBase {
|
|
protected $fieldlist = array(
|
|
'spider_weibo' => array(
|
|
'id',
|
|
'uid',
|
|
'wid',
|
|
'f_mblogid',
|
|
'mblogid',
|
|
'text',
|
|
'refer',
|
|
'pic_ids',
|
|
'video_url',
|
|
'video_cover',
|
|
'created_at',
|
|
'update_time',
|
|
'page',
|
|
'reposts_count',
|
|
'comments_count',
|
|
'attitudes_count',
|
|
'status',
|
|
),
|
|
);
|
|
|
|
protected $primary_keys = array(
|
|
'spider_weibo' => 'id',
|
|
);
|
|
}
|
|
|
|
|