You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
378 B

<?php
namespace tp5auth\model;
class ActionLog extends \think\Model
{
// 设置完整的数据表(包含前缀)
protected $name = 'action_log';
//初始化属性
protected function initialize()
{
}
// 读取器 订单状态
protected function getActionIpAttr($reg='',$data='')
{
return long2ip($data['action_ip']);
}
}
?>