修复模型时间字段无法更新问题
This commit is contained in:
@@ -116,7 +116,7 @@ class BaseModel {
|
|||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function setAttr($name, $value, $data = []) {
|
public function setAttr($name, $value, $data = []) {
|
||||||
if (is_null($value) && $this->autoWriteTimestamp && in_array($name, [$this->createTime, $this->updateTime])) {
|
if ((is_null($value) || !$value) && $this->autoWriteTimestamp && in_array($name, [$this->createTime, $this->updateTime])) {
|
||||||
// 自动写入的时间戳字段
|
// 自动写入的时间戳字段
|
||||||
$value = $this->autoWriteTimestamp($name);
|
$value = $this->autoWriteTimestamp($name);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user