mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-03 23:05:37 +08:00
27 lines
407 B
PHP
27 lines
407 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 $sub_folder */
|
|
public $sub_folder = null;
|
|
}
|