2025-03-21 09:21:11 +08:00
|
|
|
<?php
|
2025-04-16 16:10:37 +08:00
|
|
|
|
2025-03-21 09:21:11 +08:00
|
|
|
namespace app\common\model;
|
|
|
|
|
|
|
|
|
|
use think\Model;
|
|
|
|
|
|
|
|
|
|
class Attachment extends Model
|
|
|
|
|
{
|
|
|
|
|
// 设置表名
|
|
|
|
|
protected $name = 'attachments';
|
2025-04-16 17:14:48 +08:00
|
|
|
|
|
|
|
|
// 自动写入时间戳
|
|
|
|
|
protected $autoWriteTimestamp = true;
|
|
|
|
|
protected $createTime = 'createTime';
|
|
|
|
|
protected $updateTime = 'updateTime';
|
2025-04-29 11:04:41 +08:00
|
|
|
protected $defaultSoftDelete = 0;
|
2025-03-21 09:21:11 +08:00
|
|
|
}
|