Skip to content

Commit

Permalink
update Goods.php
Browse files Browse the repository at this point in the history
  • Loading branch information
wangzunjiao committed Feb 20, 2025
1 parent 2da2f5b commit f9e9d54
Showing 1 changed file with 73 additions and 0 deletions.
73 changes: 73 additions & 0 deletions model/Goods.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,79 @@ class Goods
public $goodsQuantity;
public $goodsSkuName;

public $goodsUrl;
public $deliveryMethodType;

public $goodsImageUrl;
public $priceId;

/**
* @return mixed
*/
public function getGoodsUrl()
{
return $this->goodsUrl;
}

/**
* @param mixed $goodsUrl
*/
public function setGoodsUrl($goodsUrl): void
{
$this->goodsUrl = $goodsUrl;
}

/**
* @return mixed
*/
public function getDeliveryMethodType()
{
return $this->deliveryMethodType;
}

/**
* @param mixed $deliveryMethodType
*/
public function setDeliveryMethodType($deliveryMethodType): void
{
$this->deliveryMethodType = $deliveryMethodType;
}

/**
* @return mixed
*/
public function getGoodsImageUrl()
{
return $this->goodsImageUrl;
}

/**
* @param mixed $goodsImageUrl
*/
public function setGoodsImageUrl($goodsImageUrl): void
{
$this->goodsImageUrl = $goodsImageUrl;
}

/**
* @return mixed
*/
public function getPriceId()
{
return $this->priceId;
}

/**
* @param mixed $priceId
*/
public function setPriceId($priceId): void
{
$this->priceId = $priceId;
}




/**
* @return String
*/
Expand Down

0 comments on commit f9e9d54

Please # to comment.