模型类增加autoWriteTimestamp方法动态设置时间字段写入

This commit is contained in:
thinkphp
2017-06-07 12:58:34 +08:00
parent 46620b541b
commit 46589692eb

View File

@@ -324,6 +324,17 @@ abstract class Model implements \JsonSerializable, \ArrayAccess
}
}
/**
* 是否需要自动写入时间字段
* @access public
* @param bool $auto
* @return $this
*/
public function autoWriteTimestamp($auto){
$this->autoWriteTimestamp = $auto;
return $this;
}
/**
* 修改器 设置数据对象值
* @access public