瀏覽代碼

Ajout de last_login sur UserModel

packProduct
Fab 3 年之前
父節點
當前提交
bd66e7017c
共有 1 個檔案被更改,包括 18 行新增0 行删除
  1. +18
    -0
      Model/User/UserModel.php

+ 18
- 0
Model/User/UserModel.php 查看文件

@@ -38,6 +38,11 @@ abstract class UserModel extends SovUserModel
*/
protected $favoriteMerchant;

/**
* @ORM\Column(type="datetime", nullable=true)
*/
protected $lastLogin;

/**
* @ORM\OneToMany(targetEntity="Lc\CaracoleBundle\Model\Address\AddressInterface", mappedBy="user", cascade={"persist"})
*/
@@ -122,6 +127,19 @@ abstract class UserModel extends SovUserModel
return $this;
}

public function getLastLogin()
{
return $this->lastLogin;
}

public function setLastLogin(\DateTime $time = null)
{
$this->lastLogin = $time;

return $this;
}


/**
* @return Collection|AddressInterface[]
*/

Loading…
取消
儲存