芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/cms.mgaplay.com.br/lib/Widget/SubPlaylistItem.php
. */ namespace Xibo\Widget; class SubPlaylistItem implements \JsonSerializable { /** @var int */ public $rowNo; /** @var int */ public $playlistId; /** @var string */ public $spotFill; /** @var int */ public $spotLength; /** @var ?int */ public $spots; /** @inheritDoc */ public function jsonSerialize() { return [ 'rowNo' => $this->rowNo, 'playlistId' => $this->playlistId, 'spotFill' => $this->spotFill, 'spotLength' => $this->spotLength, 'spots' => $this->spots, ]; } }