初始化

缺陷:主题配色需要优化整体的同风格
This commit is contained in:
2026-08-14 23:21:21 +08:00
parent 6e2769c528
commit bcf54c2727
152 changed files with 13521 additions and 141 deletions

View File

@@ -0,0 +1,24 @@
<?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',
];
}