mirror of
https://gitee.com/wonderful-code/buildadmin
synced 2024-11-22 15:24:09 +00:00
15 lines
208 B
PHP
15 lines
208 B
PHP
<?php
|
|
|
|
namespace app\admin\model;
|
|
|
|
use think\Model;
|
|
|
|
/**
|
|
* DataRecycle 模型
|
|
*/
|
|
class DataRecycle extends Model
|
|
{
|
|
protected $name = 'security_data_recycle';
|
|
|
|
protected $autoWriteTimestamp = true;
|
|
} |