소스 검색

Update UserModel.class.php

star7th 8 년 전
부모
커밋
b3eed52289
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      server/Application/Api/Model/UserModel.class.php

+ 5 - 1
server/Application/Api/Model/UserModel.class.php

@@ -45,4 +45,8 @@ class UserModel extends BaseModel {
         $where=array($username,$password,$username,$password);
         return $this->where("( username='%s'  and password='%s' ) ",$where)->find();
     }
-}
+    //设置最后登录时间
+    public function setLastTime($uid){
+        return $this->where("uid='%s'",array($uid))->save(array("last_login_time"=>time()));
+    }
+}