| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?php
- namespace app\entity\data\store;
- use app\entity\data\DataEntity;
- class StoreOrderStatusEntity extends DataEntity
- {
- public $orderId = null; // 订单id
- public $changeType = null; // 操作类型
- public $changeMessage = null; // 操作备注
- public $changeTime = null; // 操作时间
- /**
- * @return mixed
- */
- public function getOrderId()
- {
- return $this->orderId;
- }
- /**
- * @param mixed $orderId
- * @return StoreOrderStatusEntity
- */
- public function setOrderId($orderId): StoreOrderStatusEntity
- {
- $this->orderId = (string)$orderId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getChangeType()
- {
- return $this->changeType;
- }
- /**
- * @param mixed $changeType
- * @return StoreOrderStatusEntity
- */
- public function setChangeType($changeType): StoreOrderStatusEntity
- {
- $this->changeType = $changeType;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getChangeMessage()
- {
- return $this->changeMessage;
- }
- /**
- * @param mixed $changeMessage
- * @return StoreOrderStatusEntity
- */
- public function setChangeMessage($changeMessage): StoreOrderStatusEntity
- {
- $this->changeMessage = $changeMessage;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getChangeTime()
- {
- return $this->changeTime;
- }
- /**
- * @param mixed $changeTime
- * @return StoreOrderStatusEntity
- */
- public function setChangeTime($changeTime): StoreOrderStatusEntity
- {
- $this->changeTime = $changeTime;
- return $this;
- }
- }
|