Files
xinhu/webmain/model/locationModel.php
2022-08-14 16:47:40 +08:00

13 lines
264 B
PHP

<?php
class locationClassModel extends Model
{
public function add($user, $arr)
{
$uid = (int)m('admin')->getmou('id',"`user`='$user'");
$arr['user'] = $user;
$arr['uid'] = $uid;
$arr['optdt']= $this->rock->now;
$this->insert($arr);
}
}