| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 |
- <?php
- namespace app\entity\data\user;
- use app\entity\data\DataEntity;
- class UserCertificationEntity extends DataEntity
- {
- public $id = null; // 用户认证ID
- public $userName = null; // 认证姓名
- public $mobile = null; // 认证手机号
- public $userCard = null; // 身份证号
- public $cardPositive = null; // 身份证正面照
- public $cardReverse = null; // 身份证反面照
- public $status = null; // 认证状态:0未审核,1已通过,2已拒绝
- public $reason = null; // 拒绝原因
- public $auditTime = null; // 审核时间
- public $createTime = null; // 提交审核时间
- public $updateTime = null; // 修改时间
- public $uid = null; // 用户ID
- /**
- * @return mixed
- */
- public function getId()
- {
- return $this->id;
- }
- /**
- * @param mixed $id
- * @return UserCertificationEntity
- */
- public function setId($id): UserCertificationEntity
- {
- $this->id = $id;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getUserName()
- {
- return $this->userName;
- }
- /**
- * @param mixed $userName
- * @return UserCertificationEntity
- */
- public function setUserName($userName): UserCertificationEntity
- {
- $this->userName = $userName;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getMobile()
- {
- return $this->mobile;
- }
- /**
- * @param mixed $mobile
- * @return UserCertificationEntity
- */
- public function setMobile($mobile): UserCertificationEntity
- {
- $this->mobile = $mobile;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getUserCard()
- {
- return $this->userCard;
- }
- /**
- * @param mixed $userCard
- * @return UserCertificationEntity
- */
- public function setUserCard($userCard): UserCertificationEntity
- {
- $this->userCard = $userCard;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getCardPositive()
- {
- return $this->cardPositive;
- }
- /**
- * @param mixed $cardPositive
- * @return UserCertificationEntity
- */
- public function setCardPositive($cardPositive): UserCertificationEntity
- {
- $this->cardPositive = $cardPositive;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getCardReverse()
- {
- return $this->cardReverse;
- }
- /**
- * @param mixed $cardReverse
- * @return UserCertificationEntity
- */
- public function setCardReverse($cardReverse): UserCertificationEntity
- {
- $this->cardReverse = $cardReverse;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getStatus()
- {
- return $this->status;
- }
- /**
- * @param mixed $status
- * @return UserCertificationEntity
- */
- public function setStatus($status): UserCertificationEntity
- {
- $this->status = $status;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getReason()
- {
- return $this->reason;
- }
- /**
- * @param mixed $reason
- * @return UserCertificationEntity
- */
- public function setReason($reason): UserCertificationEntity
- {
- $this->reason = $reason;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getAuditTime()
- {
- return $this->auditTime;
- }
- /**
- * @param mixed $auditTime
- * @return UserCertificationEntity
- */
- public function setAuditTime($auditTime): UserCertificationEntity
- {
- $this->auditTime = $auditTime;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getCreateTime()
- {
- return $this->createTime;
- }
- /**
- * @param mixed $createTime
- * @return UserCertificationEntity
- */
- public function setCreateTime($createTime): UserCertificationEntity
- {
- $this->createTime = $createTime;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getUpdateTime()
- {
- return $this->updateTime;
- }
- /**
- * @param mixed $updateTime
- * @return UserCertificationEntity
- */
- public function setUpdateTime($updateTime): UserCertificationEntity
- {
- $this->updateTime = $updateTime;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getUid()
- {
- return $this->uid;
- }
- /**
- * @param mixed $uid
- * @return UserCertificationEntity
- */
- public function setUid($uid): UserCertificationEntity
- {
- $this->uid = $uid;
- return $this;
- }
- }
|