| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <?php
- namespace app\entity\data\shared;
- use app\entity\data\DataEntity;
- class SharedProsperityGroupUserEntity extends DataEntity
- {
- public $id = null; // 记录ID
- public $groupId = null; // 等级 1万人团 2千人团 3百人团
- public $userId = null; // 用户id
- public $status = null; // 状态 0失效 1有效
- public $createTime = null; // 创建时间
- public $updateTime = null; // 更新时间
- /**
- * @return mixed
- */
- public function getId()
- {
- return $this->id;
- }
- /**
- * @param mixed $id
- * @return SharedProsperityGroupUserEntity
- */
- public function setId($id): SharedProsperityGroupUserEntity
- {
- $this->id = $id;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getGroupId()
- {
- return $this->groupId;
- }
- /**
- * @param mixed $groupId
- * @return SharedProsperityGroupUserEntity
- */
- public function setGroupId($groupId): SharedProsperityGroupUserEntity
- {
- $this->groupId = $groupId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getUserId()
- {
- return $this->userId;
- }
- /**
- * @param mixed $userId
- * @return SharedProsperityGroupUserEntity
- */
- public function setUserId($userId): SharedProsperityGroupUserEntity
- {
- $this->userId = $userId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getStatus()
- {
- return $this->status;
- }
- /**
- * @param mixed $status
- * @return SharedProsperityGroupUserEntity
- */
- public function setStatus($status): SharedProsperityGroupUserEntity
- {
- $this->status = $status;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getCreateTime()
- {
- return $this->createTime;
- }
- /**
- * @param mixed $createTime
- * @return SharedProsperityGroupUserEntity
- */
- public function setCreateTime($createTime): SharedProsperityGroupUserEntity
- {
- $this->createTime = $createTime;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getUpdateTime()
- {
- return $this->updateTime;
- }
- /**
- * @param mixed $updateTime
- * @return SharedProsperityGroupUserEntity
- */
- public function setUpdateTime($updateTime): SharedProsperityGroupUserEntity
- {
- $this->updateTime = $updateTime;
- return $this;
- }
- }
|