buildadmin/app/admin/model/SensitiveData.php

19 lines
280 B
PHP
Raw Normal View History

2022-04-04 04:42:42 +00:00
<?php
namespace app\admin\model;
use think\Model;
/**
* SensitiveData 模型
*/
2022-04-04 04:42:42 +00:00
class SensitiveData extends Model
{
protected $name = 'security_sensitive_data';
2023-06-23 14:13:55 +00:00
protected $autoWriteTimestamp = true;
2022-04-04 04:42:42 +00:00
protected $type = [
'data_fields' => 'array',
];
}