12345678910111213141516171819 |
- <?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',
- ];
- }
|