locationModel.php 264 B

12345678910111213
  1. <?php
  2. class locationClassModel extends Model
  3. {
  4. public function add($user, $arr)
  5. {
  6. $uid = (int)m('admin')->getmou('id',"`user`='$user'");
  7. $arr['user'] = $user;
  8. $arr['uid'] = $uid;
  9. $arr['optdt']= $this->rock->now;
  10. $this->insert($arr);
  11. }
  12. }
粤ICP备19079148号