Files
lgp-admin-plus-api/app/Models/FileFolderModel.php
LQ bcf54c2727 初始化
缺陷:主题配色需要优化整体的同风格
2026-08-14 23:21:21 +08:00

25 lines
508 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\Models;
use App\BaseApp\BaseModel;
/**
* 素材文件夹nl_file_folder
*
* 只做素材的逻辑归类,与对象在 OSS 上的实际路径无关:
* 移动素材如果跟着改对象键,已经发出去的历史地址会全部 404。
*/
class FileFolderModel extends BaseModel
{
protected $table = 'file_folder';
protected $guarded = [];
protected $casts = [
'pid' => 'integer',
'sort' => 'integer',
'status' => 'integer',
];
}