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.
25 lines
264 B
25 lines
264 B
<?php
|
|
|
|
/**
|
|
* links
|
|
* @author auto create
|
|
*/
|
|
class Links
|
|
{
|
|
|
|
/**
|
|
* 点击单条信息到跳转链接
|
|
**/
|
|
public $message_u_r_l;
|
|
|
|
/**
|
|
* 单条信息文本
|
|
**/
|
|
public $pic_u_r_l;
|
|
|
|
/**
|
|
* 单条信息后面图片的URL
|
|
**/
|
|
public $title;
|
|
}
|
|
?>
|