34 lines
748 B
PHP
34 lines
748 B
PHP
<?php
|
|
declare (strict_types = 1);
|
|
|
|
namespace app\common\model;
|
|
|
|
use think\Model;
|
|
|
|
/**
|
|
* 附件上传基础模型
|
|
* @mixin \think\Model
|
|
*/
|
|
class SysAttachmentUploadRecordBaseModel extends Model
|
|
{
|
|
// 表名
|
|
protected $name = 'sys_attachment_upload_record';
|
|
|
|
// 主键
|
|
protected $pk = 'id';
|
|
|
|
// 字段信息
|
|
protected $schema = [
|
|
'id' => 'int',
|
|
'language_id' => 'int',
|
|
'module' => 'string',
|
|
'attachment_path' => 'string',
|
|
'file_size' => 'int',
|
|
'file_type' => 'string',
|
|
'file_md5' => 'string',
|
|
'file_sha1' => 'string',
|
|
'created_at' => 'datetime',
|
|
'deleted_at' => 'datetime',
|
|
];
|
|
}
|