Files
cunkebao_v3/Server/application/common/model/Attachment.php
2025-04-29 11:04:41 +08:00

17 lines
340 B
PHP

<?php
namespace app\common\model;
use think\Model;
class Attachment extends Model
{
// 设置表名
protected $name = 'attachments';
// 自动写入时间戳
protected $autoWriteTimestamp = true;
protected $createTime = 'createTime';
protected $updateTime = 'updateTime';
protected $defaultSoftDelete = 0;
}