UserSignFenrunEntity.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. <?php
  2. namespace app\entity\data\user;
  3. use app\entity\data\DataEntity;
  4. class UserSignFenrunEntity extends DataEntity
  5. {
  6. public $id = null; // 自增id
  7. public $uid = null; // 会员id
  8. public $number = null; // 数量
  9. public $status = null; // 状态1已结算 0-已失效 -1未结算
  10. public $mark = null; // 备注
  11. public $desc = null; // 描述
  12. public $orderId = null; // 订单id
  13. public $orderType = null; // 订单类型。关联订单ID
  14. public $settlementTime = null; // 结算时间
  15. public $addtime = null; // 添加时间
  16. /**
  17. * @return mixed
  18. */
  19. public function getId()
  20. {
  21. return $this->id;
  22. }
  23. /**
  24. * @param mixed $id
  25. * @return UserSignFenrunEntity
  26. */
  27. public function setId($id): UserSignFenrunEntity
  28. {
  29. $this->id = $id;
  30. return $this;
  31. }
  32. /**
  33. * @return mixed
  34. */
  35. public function getUid()
  36. {
  37. return $this->uid;
  38. }
  39. /**
  40. * @param mixed $uid
  41. * @return UserSignFenrunEntity
  42. */
  43. public function setUid($uid): UserSignFenrunEntity
  44. {
  45. $this->uid = $uid;
  46. return $this;
  47. }
  48. /**
  49. * @return mixed
  50. */
  51. public function getNumber()
  52. {
  53. return $this->number;
  54. }
  55. /**
  56. * @param mixed $number
  57. * @return UserSignFenrunEntity
  58. */
  59. public function setNumber($number): UserSignFenrunEntity
  60. {
  61. $this->number = $number;
  62. return $this;
  63. }
  64. /**
  65. * @return mixed
  66. */
  67. public function getStatus()
  68. {
  69. return $this->status;
  70. }
  71. /**
  72. * @param mixed $status
  73. * @return UserSignFenrunEntity
  74. */
  75. public function setStatus($status): UserSignFenrunEntity
  76. {
  77. $this->status = $status;
  78. return $this;
  79. }
  80. /**
  81. * @return mixed
  82. */
  83. public function getMark()
  84. {
  85. return $this->mark;
  86. }
  87. /**
  88. * @param mixed $mark
  89. * @return UserSignFenrunEntity
  90. */
  91. public function setMark($mark): UserSignFenrunEntity
  92. {
  93. $this->mark = $mark;
  94. return $this;
  95. }
  96. /**
  97. * @return mixed
  98. */
  99. public function getDesc()
  100. {
  101. return $this->desc;
  102. }
  103. /**
  104. * @param mixed $desc
  105. * @return UserSignFenrunEntity
  106. */
  107. public function setDesc($desc): UserSignFenrunEntity
  108. {
  109. $this->desc = $desc;
  110. return $this;
  111. }
  112. /**
  113. * @return mixed
  114. */
  115. public function getOrderId()
  116. {
  117. return $this->orderId;
  118. }
  119. /**
  120. * @param mixed $orderId
  121. * @return UserSignFenrunEntity
  122. */
  123. public function setOrderId($orderId): UserSignFenrunEntity
  124. {
  125. $this->orderId = $orderId;
  126. return $this;
  127. }
  128. /**
  129. * @return mixed
  130. */
  131. public function getOrderType()
  132. {
  133. return $this->orderType;
  134. }
  135. /**
  136. * @param mixed $orderType
  137. * @return UserSignFenrunEntity
  138. */
  139. public function setOrderType($orderType): UserSignFenrunEntity
  140. {
  141. $this->orderType = $orderType;
  142. return $this;
  143. }
  144. /**
  145. * @return mixed
  146. */
  147. public function getSettlementTime()
  148. {
  149. return $this->settlementTime;
  150. }
  151. /**
  152. * @param mixed $settlementTime
  153. * @return UserSignFenrunEntity
  154. */
  155. public function setSettlementTime($settlementTime): UserSignFenrunEntity
  156. {
  157. $this->settlementTime = $settlementTime;
  158. return $this;
  159. }
  160. /**
  161. * @return mixed
  162. */
  163. public function getAddtime()
  164. {
  165. return $this->addtime;
  166. }
  167. /**
  168. * @param mixed $addtime
  169. * @return UserSignFenrunEntity
  170. */
  171. public function setAddtime($addtime): UserSignFenrunEntity
  172. {
  173. $this->addtime = $addtime;
  174. return $this;
  175. }
  176. }