Skip to content

Commit f9e9d54

Browse files
committed
update Goods.php
1 parent 2da2f5b commit f9e9d54

File tree

1 file changed

+73
-0
lines changed

1 file changed

+73
-0
lines changed

model/Goods.php

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,79 @@ class Goods
1212
public $goodsQuantity;
1313
public $goodsSkuName;
1414

15+
public $goodsUrl;
16+
public $deliveryMethodType;
17+
18+
public $goodsImageUrl;
19+
public $priceId;
20+
21+
/**
22+
* @return mixed
23+
*/
24+
public function getGoodsUrl()
25+
{
26+
return $this->goodsUrl;
27+
}
28+
29+
/**
30+
* @param mixed $goodsUrl
31+
*/
32+
public function setGoodsUrl($goodsUrl): void
33+
{
34+
$this->goodsUrl = $goodsUrl;
35+
}
36+
37+
/**
38+
* @return mixed
39+
*/
40+
public function getDeliveryMethodType()
41+
{
42+
return $this->deliveryMethodType;
43+
}
44+
45+
/**
46+
* @param mixed $deliveryMethodType
47+
*/
48+
public function setDeliveryMethodType($deliveryMethodType): void
49+
{
50+
$this->deliveryMethodType = $deliveryMethodType;
51+
}
52+
53+
/**
54+
* @return mixed
55+
*/
56+
public function getGoodsImageUrl()
57+
{
58+
return $this->goodsImageUrl;
59+
}
60+
61+
/**
62+
* @param mixed $goodsImageUrl
63+
*/
64+
public function setGoodsImageUrl($goodsImageUrl): void
65+
{
66+
$this->goodsImageUrl = $goodsImageUrl;
67+
}
68+
69+
/**
70+
* @return mixed
71+
*/
72+
public function getPriceId()
73+
{
74+
return $this->priceId;
75+
}
76+
77+
/**
78+
* @param mixed $priceId
79+
*/
80+
public function setPriceId($priceId): void
81+
{
82+
$this->priceId = $priceId;
83+
}
84+
85+
86+
87+
1588
/**
1689
* @return String
1790
*/

0 commit comments

Comments
 (0)