mirror of
https://gitee.com/wonderful-code/buildadmin
synced 2024-11-22 15:24:09 +00:00
20 lines
299 B
PHP
20 lines
299 B
PHP
<?php
|
|
|
|
namespace app\admin\model;
|
|
|
|
use think\Model;
|
|
|
|
/**
|
|
* AdminRule 模型
|
|
*/
|
|
class AdminRule extends Model
|
|
{
|
|
protected $autoWriteTimestamp = true;
|
|
|
|
public function setComponentAttr($value)
|
|
{
|
|
if ($value) $value = str_replace('\\', '/', $value);
|
|
return $value;
|
|
}
|
|
|
|
} |