26 lines
656 B
PHP
26 lines
656 B
PHP
<?php
|
||
|
||
namespace app\model;
|
||
|
||
use app\BaseModel;
|
||
|
||
/**
|
||
* @property string $disk 存储磁盘
|
||
* @property string $path_rule 路径规则
|
||
* @property string $name_rule 命名规则
|
||
* @property string $query Query参数携带
|
||
* @property string $permissions
|
||
* #1 文件大小限制(单位:KB)
|
||
* @property int $rule_file_size_limit_min
|
||
* @property int $rule_file_size_limit_max
|
||
* #2 文件类型限制
|
||
* @property string $rule_file_ext
|
||
* @property string $rule_file_mime
|
||
* #3 图片类型限制
|
||
* @property string $rule_image
|
||
*/
|
||
class SysFileRule extends BaseModel
|
||
{
|
||
protected $name = "sys_file_rule";
|
||
protected $pk = "id";
|
||
} |