Skip to content

Commit 9614eed

Browse files
add field
1 parent 37cb42e commit 9614eed

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

model/Env.php

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ class Env{
88
public $deviceTokenId;
99
public $clientIp;
1010
public $cookieId;
11+
public $storeTerminalId;
12+
public $storeTerminalRequestTime;
1113
public $extendInfo;
1214

1315
/**
@@ -108,5 +110,36 @@ public function setExtendInfo($extendInfo){
108110
$this->extendInfo = $extendInfo;
109111
}
110112

113+
/**
114+
* @return mixed
115+
*/
116+
public function getStoreTerminalId()
117+
{
118+
return $this->storeTerminalId;
119+
}
120+
121+
/**
122+
* @param mixed $storeTerminalId
123+
*/
124+
public function setStoreTerminalId($storeTerminalId)
125+
{
126+
$this->storeTerminalId = $storeTerminalId;
127+
}
111128

129+
/**
130+
* @return mixed
131+
*/
132+
public function getStoreTerminalRequestTime()
133+
{
134+
return $this->storeTerminalRequestTime;
135+
}
136+
137+
/**
138+
* @param mixed $storeTerminalRequestTime
139+
*/
140+
public function setStoreTerminalRequestTime($storeTerminalRequestTime)
141+
{
142+
$this->storeTerminalRequestTime = $storeTerminalRequestTime;
143+
}
144+
112145
}

0 commit comments

Comments
 (0)