UserCertificationEntity.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. <?php
  2. namespace app\entity\data\user;
  3. use app\entity\data\DataEntity;
  4. class UserCertificationEntity extends DataEntity
  5. {
  6. public $id = null; // 用户认证ID
  7. public $userName = null; // 认证姓名
  8. public $mobile = null; // 认证手机号
  9. public $userCard = null; // 身份证号
  10. public $cardPositive = null; // 身份证正面照
  11. public $cardReverse = null; // 身份证反面照
  12. public $status = null; // 认证状态:0未审核,1已通过,2已拒绝
  13. public $reason = null; // 拒绝原因
  14. public $auditTime = null; // 审核时间
  15. public $createTime = null; // 提交审核时间
  16. public $updateTime = null; // 修改时间
  17. public $uid = null; // 用户ID
  18. /**
  19. * @return mixed
  20. */
  21. public function getId()
  22. {
  23. return $this->id;
  24. }
  25. /**
  26. * @param mixed $id
  27. * @return UserCertificationEntity
  28. */
  29. public function setId($id): UserCertificationEntity
  30. {
  31. $this->id = $id;
  32. return $this;
  33. }
  34. /**
  35. * @return mixed
  36. */
  37. public function getUserName()
  38. {
  39. return $this->userName;
  40. }
  41. /**
  42. * @param mixed $userName
  43. * @return UserCertificationEntity
  44. */
  45. public function setUserName($userName): UserCertificationEntity
  46. {
  47. $this->userName = $userName;
  48. return $this;
  49. }
  50. /**
  51. * @return mixed
  52. */
  53. public function getMobile()
  54. {
  55. return $this->mobile;
  56. }
  57. /**
  58. * @param mixed $mobile
  59. * @return UserCertificationEntity
  60. */
  61. public function setMobile($mobile): UserCertificationEntity
  62. {
  63. $this->mobile = $mobile;
  64. return $this;
  65. }
  66. /**
  67. * @return mixed
  68. */
  69. public function getUserCard()
  70. {
  71. return $this->userCard;
  72. }
  73. /**
  74. * @param mixed $userCard
  75. * @return UserCertificationEntity
  76. */
  77. public function setUserCard($userCard): UserCertificationEntity
  78. {
  79. $this->userCard = $userCard;
  80. return $this;
  81. }
  82. /**
  83. * @return mixed
  84. */
  85. public function getCardPositive()
  86. {
  87. return $this->cardPositive;
  88. }
  89. /**
  90. * @param mixed $cardPositive
  91. * @return UserCertificationEntity
  92. */
  93. public function setCardPositive($cardPositive): UserCertificationEntity
  94. {
  95. $this->cardPositive = $cardPositive;
  96. return $this;
  97. }
  98. /**
  99. * @return mixed
  100. */
  101. public function getCardReverse()
  102. {
  103. return $this->cardReverse;
  104. }
  105. /**
  106. * @param mixed $cardReverse
  107. * @return UserCertificationEntity
  108. */
  109. public function setCardReverse($cardReverse): UserCertificationEntity
  110. {
  111. $this->cardReverse = $cardReverse;
  112. return $this;
  113. }
  114. /**
  115. * @return mixed
  116. */
  117. public function getStatus()
  118. {
  119. return $this->status;
  120. }
  121. /**
  122. * @param mixed $status
  123. * @return UserCertificationEntity
  124. */
  125. public function setStatus($status): UserCertificationEntity
  126. {
  127. $this->status = $status;
  128. return $this;
  129. }
  130. /**
  131. * @return mixed
  132. */
  133. public function getReason()
  134. {
  135. return $this->reason;
  136. }
  137. /**
  138. * @param mixed $reason
  139. * @return UserCertificationEntity
  140. */
  141. public function setReason($reason): UserCertificationEntity
  142. {
  143. $this->reason = $reason;
  144. return $this;
  145. }
  146. /**
  147. * @return mixed
  148. */
  149. public function getAuditTime()
  150. {
  151. return $this->auditTime;
  152. }
  153. /**
  154. * @param mixed $auditTime
  155. * @return UserCertificationEntity
  156. */
  157. public function setAuditTime($auditTime): UserCertificationEntity
  158. {
  159. $this->auditTime = $auditTime;
  160. return $this;
  161. }
  162. /**
  163. * @return mixed
  164. */
  165. public function getCreateTime()
  166. {
  167. return $this->createTime;
  168. }
  169. /**
  170. * @param mixed $createTime
  171. * @return UserCertificationEntity
  172. */
  173. public function setCreateTime($createTime): UserCertificationEntity
  174. {
  175. $this->createTime = $createTime;
  176. return $this;
  177. }
  178. /**
  179. * @return mixed
  180. */
  181. public function getUpdateTime()
  182. {
  183. return $this->updateTime;
  184. }
  185. /**
  186. * @param mixed $updateTime
  187. * @return UserCertificationEntity
  188. */
  189. public function setUpdateTime($updateTime): UserCertificationEntity
  190. {
  191. $this->updateTime = $updateTime;
  192. return $this;
  193. }
  194. /**
  195. * @return mixed
  196. */
  197. public function getUid()
  198. {
  199. return $this->uid;
  200. }
  201. /**
  202. * @param mixed $uid
  203. * @return UserCertificationEntity
  204. */
  205. public function setUid($uid): UserCertificationEntity
  206. {
  207. $this->uid = $uid;
  208. return $this;
  209. }
  210. }