Files
charge-pile-serve/app/model/Event.php

14 lines
263 B
PHP
Raw Permalink Normal View History

2025-11-10 16:12:07 +08:00
<?php
namespace app\model;
use think\Model;
use think\model\concern\SoftDelete;
class Event extends Model
{
protected $createTime = 'create_time';
protected $updateTime = 'last_update_time';
use SoftDelete;
protected $deleteTime = 'delete_time';
}