| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- <?php
- namespace app\entity\data\user;
- use app\entity\data\DataEntity;
- class UserPvLogEntity extends DataEntity
- {
- public $id = null; // 自增id
- public $uid = null; // 会员id
- public $pv = null; // pv值
- public $status = null; // pv状态1-有效 0-失效 -1待确认
- public $mark = null; // 备注
- public $order_id = null; // 订单id
- public $order_type = null; // 订单类型。关联订单ID
- public $settlement_time = null; // 结算时间
- public $addtime = null; // 添加时间
- /**
- * @return mixed
- */
- public function getId()
- {
- return $this->id;
- }
- /**
- * @param mixed $id
- * @return UserPvLogEntity
- */
- public function setId($id): UserPvLogEntity
- {
- $this->id = $id;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getUid()
- {
- return $this->uid;
- }
- /**
- * @param mixed $uid
- * @return UserPvLogEntity
- */
- public function setUid($uid): UserPvLogEntity
- {
- $this->uid = $uid;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getPv()
- {
- return $this->pv;
- }
- /**
- * @param mixed $pv
- * @return UserPvLogEntity
- */
- public function setPv($pv): UserPvLogEntity
- {
- $this->pv = $pv;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getStatus()
- {
- return $this->status;
- }
- /**
- * @param mixed $status
- * @return UserPvLogEntity
- */
- public function setStatus($status): UserPvLogEntity
- {
- $this->status = $status;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getMark()
- {
- return $this->mark;
- }
- /**
- * @param mixed $mark
- * @return UserPvLogEntity
- */
- public function setMark($mark): UserPvLogEntity
- {
- $this->mark = $mark;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getOrderId()
- {
- return $this->order_id;
- }
- /**
- * @param mixed $order_id
- * @return UserPvLogEntity
- */
- public function setOrderId($order_id): UserPvLogEntity
- {
- $this->order_id = $order_id;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getOrderType()
- {
- return $this->order_type;
- }
- /**
- * @param mixed $order_type
- * @return UserPvLogEntity
- */
- public function setOrderType($order_type): UserPvLogEntity
- {
- $this->order_type = $order_type;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getSettlementTime()
- {
- return $this->settlement_time;
- }
- /**
- * @param mixed $settlement_time
- * @return UserPvLogEntity
- */
- public function setSettlementTime($settlement_time): UserPvLogEntity
- {
- $this->settlement_time = $settlement_time;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getAddtime()
- {
- return $this->addtime;
- }
- /**
- * @param mixed $addtime
- * @return UserPvLogEntity
- */
- public function setAddtime($addtime): UserPvLogEntity
- {
- $this->addtime = $addtime;
- return $this;
- }
- }
|