28 lines
415 B
PHP
Raw Normal View History

2025-02-26 11:49:20 +08:00
<?php
namespace app\model\system\log;
use crmeb\basic\BaseModel;
use crmeb\traits\ModelTrait;
/**
* @author 吴汐
* @email 442384644@qq.com
* @date 2023/04/07
*/
class SystemFileInfo extends BaseModel
{
use ModelTrait;
/**
* 数据表主键
* @var string
*/
protected $pk = 'id';
/**
* 模型名称
* @var string
*/
protected $name = 'system_file_info';
}