tapi/app/model/SysFileRule.php
u2nyakim ca6abacb5d up.
2025-08-26 17:56:48 +08:00

26 lines
656 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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";
}