$id :
$cover_url :
$address_name :
$address_info :
$sort :
__construct(array $data = array())
__call( $name, $args)
toArray()
toArrayNotNull()
getAllProtected()
getId() : void
getCoverUrl() : void
getAddressName() : void
getAddressInfo() : void
getSort() : void
setId(mixed $value) : void
setCoverUrl(mixed $value) : void
setAddressName(mixed $value) : void
setAddressInfo(mixed $value) : void
setSort(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 getCoverUrl() * @method getAddressName() * @method getAddressInfo() * @method getSort() * * @method setId($value) * @method setCoverUrl($value) * @method setAddressName($value) * @method setAddressInfo($value) * @method setSort($value) */ class LookofVillageFormat extends Format { protected $id; protected $cover_url; protected $address_name; protected $address_info; protected $sort; }