CRMEB/app/admin/model/system/SystemFile.php
2019-09-16 15:52:59 +08:00

35 lines
492 B
PHP

<?php
/**
* @author: xaboy<365615158@qq.com>
* @day: 2017/11/13
*/
namespace app\admin\model\system;
use crmeb\traits\ModelTrait;
use crmeb\basic\BaseModel;
/**
* 附件管理model
* Class SystemAttachment
* @package app\admin\model\system
*/
class SystemFile extends BaseModel
{
/**
* 数据表主键
* @var string
*/
protected $pk = 'id';
/**
* 模型名称
* @var string
*/
protected $name = 'system_file';
use ModelTrait;
}