createdAt = new \DateTime('now'); } /** * Get article number * * @return string * * @since 1.0.0 */ public function getNumber() : string { return $this->number; } /** * Get article information text * * @return string * * @since 1.0.0 */ public function getInfo() : string { return $this->info; } /** * Get name1 * * @return string * * @since 1.0.0 */ public function getName1() : string { return $this->name1; } /** * Get name2 * * @return string * * @since 1.0.0 */ public function getName2() : string { return $this->name2; } /** * Get englisch name1 * * @return string * * @since 1.0.0 */ public function getName1Eng() : string { return $this->name1Eng; } /** * Get englisch name2 * * @return string * * @since 1.0.0 */ public function getName2Eng() : string { return $this->name2Eng; } /** * Get status * * @return int * * @since 1.0.0 */ public function getStatus() : int { return $this->status; } /** * Get lot type * * @return int * * @since 1.0.0 */ public function getLotType() : int { return $this->lotType; } /** * Get weight * * @return float * * @since 1.0.0 */ public function getWeight() : float { return $this->weight; } /** * Get lead time (in days) * * @return int * * @since 1.0.0 */ public function getLeadTime() : int { return $this->leadTime; } /** * Get EU item group * * @return string * * @since 1.0.0 */ public function getEUItemGroup() : string { return $this->EUitemgroup; } }