12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?php
- /**
- * Created by PhpStorm
- * User:林志杰
- * Email:[email protected]
- * Motto:纵有疾风起,人生不言弃!
- * Time:2020/1/3 0:29
- */
- namespace app\common\model\mysql;
- use think\Model;
- class User extends Model
- {
- /**
- * 自动生成写入时间
- * @var bool
- */
- protected $autoWriteTimestamp = true;
- /**
- * 根据手机号获取用户信息
- * @param $phoneNumber
- * @return array|bool|Model|null
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getUserByPhoneNumber($phoneNumber)
- {
- if (empty($phoneNumber)) {
- return false;
- }
- $where = [
- 'phone_number' => $phoneNumber
- ];
- return $this->where($where)->find();
- }
- /**
- * 通过id获取用户数据
- * @param int $id
- * @return array|bool|Model|null
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getUserById(int $id)
- {
- if (!$id) {
- return false;
- }
- return $this->find($id);
- }
- /**
- * 根据username获取用户数据
- * @param string $username
- * @return array|bool|Model|null
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getUserByUsername(string $username)
- {
- if (empty($username)) {
- return false;
- }
- $where = [
- 'username' => $username
- ];
- return $this->where($where)->find();
- }
- /**
- * 根据主键id更新数据表中的数据
- * @param $id
- * @param $data
- * @return bool
- */
- public function updateById($id, $data)
- {
- $id = (int)$id;
- if (empty($id) || empty($data) || !is_array($data)) {
- return false;
- }
- $where = [
- 'id' => $id,
- ];
- return $this->where($where)->save($data);
- }
- }
|