mirror of
https://gitee.com/wonderful-code/buildadmin
synced 2024-11-22 15:24:09 +00:00
19 lines
280 B
PHP
19 lines
280 B
PHP
<?php
|
|
|
|
namespace app\admin\model;
|
|
|
|
use think\Model;
|
|
|
|
/**
|
|
* SensitiveData 模型
|
|
*/
|
|
class SensitiveData extends Model
|
|
{
|
|
protected $name = 'security_sensitive_data';
|
|
|
|
protected $autoWriteTimestamp = true;
|
|
|
|
protected $type = [
|
|
'data_fields' => 'array',
|
|
];
|
|
} |