Files
zhamao-framework/src/ZM/Annotation/Module/SaveBuffer.php

27 lines
407 B
PHP
Raw Normal View History

2020-03-02 16:14:20 +08:00
<?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
2020-05-23 17:23:29 +08:00
* @Required()
2020-03-02 16:14:20 +08:00
*/
public $buf_name;
2020-05-23 17:23:29 +08:00
/** @var string $sub_folder */
2020-03-02 16:14:20 +08:00
public $sub_folder = null;
2020-05-23 17:23:29 +08:00
}