This commit is contained in:
2026-03-17 16:48:52 +08:00
parent 895988cf27
commit 2f469d6b60
7 changed files with 436 additions and 1 deletions
+22
View File
@@ -0,0 +1,22 @@
<?php
namespace wchat\wx\V3\Libs;
class GoodsInfo
{
public string $ProductId;
public int $Quantity;
public int $OrigPrice;
public int $ActualPrice;
public string $Attach;
public function __construct(array $data)
{
$this->ProductId = $data['ProductId'];
$this->Quantity = $data['Quantity'];
$this->OrigPrice = $data['OrigPrice'];
$this->ActualPrice = $data['ActualPrice'];
$this->Attach = $data['Attach'];
}
}