$id :
$title :
$pic_url :
$web_url :
$xcx_url :
$identity_visibility :
$push_time :
$is_hide :
__construct(array $data = array())
__call( $name, $args)
toArray()
toArrayNotNull()
getAllProtected()
getId() : void
getTitle() : void
getPicUrl() : void
getWebUrl() : void
getXcxUrl() : void
getIdentityVisibility() : void
getPushTime() : void
getIsHide() : void
setId(mixed $value) : void
setTitle(mixed $value) : void
setPicUrl(mixed $value) : void
setWebUrl(mixed $value) : void
setXcxUrl(mixed $value) : void
setIdentityVisibility(mixed $value) : void
setPushTime(mixed $value) : void
setIsHide(mixed $value) : void
<?php /** * JingYao-backend * * @link https://gitee.com/wang-zhihui-release/jingyao-backend * @apiDocument https://gitee.com/wang-zhihui-release/jingyao-backend/wikis/ */ namespace App\Format; /** * @method getId() * @method getTitle() * @method getPicUrl() * @method getWebUrl() * @method getXcxUrl() * @method getIdentityVisibility() * @method getPushTime() * @method getIsHide() * * @method setId($value) * @method setTitle($value) * @method setPicUrl($value) * @method setWebUrl($value) * @method setXcxUrl($value) * @method setIdentityVisibility($value) * @method setPushTime($value) * @method setIsHide($value) */ class BannerFormat extends Format { protected $id; protected $title; protected $pic_url; protected $web_url; protected $xcx_url; protected $identity_visibility; protected $push_time; protected $is_hide; }