mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-06 16:25:36 +08:00
25 lines
409 B
PHP
25 lines
409 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
|
||
|
|
namespace ZM\Annotation\Module;
|
||
|
|
|
||
|
|
|
||
|
|
use Doctrine\Common\Annotations\Annotation\Required;
|
||
|
|
use Doctrine\Common\Annotations\Annotation\Target;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Class SaveBuffer
|
||
|
|
* @Annotation
|
||
|
|
* @Target("CLASS")
|
||
|
|
* @package ZM\Annotation\Module
|
||
|
|
*/
|
||
|
|
class SaveBuffer
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* @var string
|
||
|
|
*@Required()
|
||
|
|
*/
|
||
|
|
public $buf_name;
|
||
|
|
/** @var string|null $sub_folder */
|
||
|
|
public $sub_folder = null;
|
||
|
|
}
|