mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-01 20:52:48 +08:00
模型类增加autoWriteTimestamp方法动态设置时间字段写入
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user