row; } /** * @param mixed $row * @return $this */ public function row($row) { $this->row = $row; return $this; } /** * 当前行下标 * @return mixed */ public function getKey() { return $this->key; } /** * @param mixed $key * @return $this */ public function key($key) { $this->key = $key; return $this; } }