attributes['uid']; } public function getTitle(): string { return $this->attributes['name']; } public function getStatus(): string { return $this->attributes['status']; } //추가기능 public function getCategory_uid() { return $this->attributes['category_uid']; } public function getUer_uid() { return $this->attributes['user_uid']; } public function getCost() { return $this->attributes['cost']; } public function getPrice() { return $this->attributes['price']; } public function getSale() { return $this->attributes['sale']; } public function getPhoto() { return $this->attributes['photo']; } public function getPhotoFileName($size = 'small') { return $size . '_' . explode(DEFAULTS['DELIMITER_FILE'], $this->getPhoto())[1]; } public function getContent() { return $this->attributes['content']; } public function getViews() { return $this->attributes['view_cnt']; } public function getStock() { return $this->attributes['stock']; } }