| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- <?php
- namespace app\entity\data\user;
- use app\entity\data\DataEntity;
- class UserSignVrEntity extends DataEntity
- {
- public $id = null; // 自增id
- public $uid = null; // 会员id
- public $number = null; // 赠送数量
- public $mark = null; // 备注
- public $desc = null; // 描述
- public $orderId = null; // 订单id
- public $surplus = null; // 剩余
- public $orderType = null; // 订单类型。关联订单ID
- public $type = null; // vr类型 :1兑换,2消耗
- public $settlementTime = null; // 结算时间
- public $addtime = null; // 添加时间
- /**
- * @return mixed
- */
- public function getId()
- {
- return $this->id;
- }
- /**
- * @param mixed $id
- * @return UserSignVrEntity
- */
- public function setId($id): UserSignVrEntity
- {
- $this->id = $id;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getUid()
- {
- return $this->uid;
- }
- /**
- * @param mixed $uid
- * @return UserSignVrEntity
- */
- public function setUid($uid): UserSignVrEntity
- {
- $this->uid = $uid;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getNumber()
- {
- return $this->number;
- }
- /**
- * @param mixed $number
- * @return UserSignVrEntity
- */
- public function setNumber($number): UserSignVrEntity
- {
- $this->number = $number;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getMark()
- {
- return $this->mark;
- }
- /**
- * @param mixed $mark
- * @return UserSignVrEntity
- */
- public function setMark($mark): UserSignVrEntity
- {
- $this->mark = $mark;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getDesc()
- {
- return $this->desc;
- }
- /**
- * @param mixed $desc
- * @return UserSignVrEntity
- */
- public function setDesc($desc): UserSignVrEntity
- {
- $this->desc = $desc;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getOrderId()
- {
- return $this->orderId;
- }
- /**
- * @param mixed $orderId
- * @return UserSignVrEntity
- */
- public function setOrderId($orderId): UserSignVrEntity
- {
- $this->orderId = $orderId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getSurplus()
- {
- return $this->surplus;
- }
- /**
- * @param mixed $surplus
- * @return UserSignVrEntity
- */
- public function setSurplus($surplus): UserSignVrEntity
- {
- $this->surplus = $surplus;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getOrderType()
- {
- return $this->orderType;
- }
- /**
- * @param mixed $orderType
- * @return UserSignVrEntity
- */
- public function setOrderType($orderType): UserSignVrEntity
- {
- $this->orderType = $orderType;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getType()
- {
- return $this->type;
- }
- /**
- * @param mixed $type
- * @return UserSignVrEntity
- */
- public function setType($type): UserSignVrEntity
- {
- $this->type = $type;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getSettlementTime()
- {
- return $this->settlementTime;
- }
- /**
- * @param mixed $settlementTime
- * @return UserSignVrEntity
- */
- public function setSettlementTime($settlementTime): UserSignVrEntity
- {
- $this->settlementTime = $settlementTime;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getAddtime()
- {
- return $this->addtime;
- }
- /**
- * @param mixed $addtime
- * @return UserSignVrEntity
- */
- public function setAddtime($addtime): UserSignVrEntity
- {
- $this->addtime = $addtime;
- return $this;
- }
- }
|