Files
2021-10-12 11:06:24 +08:00

18 lines
251 B
PHP

<?php
namespace app\common\model;
use think\Exception;
use think\Model;
use think\model\concern\SoftDelete;
class Folders extends Model
{
use SoftDelete;
protected $deleteTime = 'delete_time';
protected $autoWriteTimestamp = true;
}