src/Entity/Shipping.php line 10
<?phpnamespace App\Entity;use App\Repository\ShippingRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: ShippingRepository::class)]class Shipping{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(type: Types::DECIMAL, precision: 10, scale: 2)]private ?string $shipping_weight = null;#[ORM\Column(type: Types::DECIMAL, precision: 10, scale: 2)]private ?string $shipping_price = null;public function getId(): ?int{return $this->id;}public function getShippingWeight(): ?string{return $this->shipping_weight;}public function setShippingWeight(string $shipping_weight): self{$this->shipping_weight = $shipping_weight;return $this;}public function getShippingPrice(): ?string{return $this->shipping_price;}public function setShippingPrice(string $shipping_price): self{$this->shipping_price = $shipping_price;return $this;}}