needMorningWash && !$this->morningWashed; } /** * 判断晨洗是否已完成 */ public function isCompleted(): bool { return $this->morningWashed; } /** * 判断今天是否有洗消记录 */ public function hasWashRecordsToday(): bool { return $this->todayWashRecords > 0; } /** * 转换为数组 */ public function toArray(): array { return [ 'needMorningWash' => $this->needMorningWash, 'morningWashed' => $this->morningWashed, 'startTime' => $this->startTime, 'todayWashRecords' => $this->todayWashRecords, ]; } }