|
|
@@ -101,6 +101,8 @@ class StoreOrderEntity extends DataEntity
|
|
101
|
101
|
public $fzonePayType = null;
|
|
102
|
102
|
public $pensionJson = null; // 养老金设置(将当前商品的养老金分配设置保存一份)
|
|
103
|
103
|
|
|
|
104
|
+ public $pickUpId = null;
|
|
|
105
|
+
|
|
104
|
106
|
/**
|
|
105
|
107
|
* @return mixed
|
|
106
|
108
|
*/
|
|
|
@@ -1771,6 +1773,17 @@ class StoreOrderEntity extends DataEntity
|
|
1771
|
1773
|
return $this;
|
|
1772
|
1774
|
}
|
|
1773
|
1775
|
|
|
|
1776
|
+ public function getPickUpId()
|
|
|
1777
|
+ {
|
|
|
1778
|
+ return $this->pickUpId;
|
|
|
1779
|
+ }
|
|
|
1780
|
+
|
|
|
1781
|
+ public function setPickUpId($pickUpId): StoreOrderEntity
|
|
|
1782
|
+ {
|
|
|
1783
|
+ $this->pickUpId = $pickUpId;
|
|
|
1784
|
+ return $this;
|
|
|
1785
|
+ }
|
|
|
1786
|
+
|
|
1774
|
1787
|
public function deconstructionFzonePaytype()
|
|
1775
|
1788
|
{
|
|
1776
|
1789
|
if (!empty($this->getFzonePayType()) && is_array(json_decode($this->getFzonePayType(), true))) {
|