| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 |
- <?php
- namespace app\entity\data\user;
- use app\entity\data\DataEntity;
- class UserWithdrawalLimitRecordEntity extends DataEntity
- {
- public $id = null; // 记录ID
- public $userId = null; // 用户ID
- public $pm = null; // 0 = 支出 1 = 获得
- public $number = null; // 明细数字
- public $balance = null; // 剩余
- public $status = null; // 0 = 待确定 1 = 有效 -1 = 无效
- public $typeShop = null; // 0平台1多多进宝2唯品会3苏宁易购4网易考拉5淘宝客6京东联盟7饿了么8线上9话费
- public $orderSn = null; // 订单号
- public $takeTime = null; // 结算时间
- public $remark = null; // 备注
- public $createTime = null; // 添加时间
- public $updateTime = null; // 更新时间
- /**
- * @return mixed
- */
- public function getId()
- {
- return $this->id;
- }
- /**
- * @param mixed $id
- * @return UserWithdrawalLimitRecordEntity
- */
- public function setId($id): UserWithdrawalLimitRecordEntity
- {
- $this->id = $id;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getUserId()
- {
- return $this->userId;
- }
- /**
- * @param mixed $userId
- * @return UserWithdrawalLimitRecordEntity
- */
- public function setUserId($userId): UserWithdrawalLimitRecordEntity
- {
- $this->userId = $userId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getPm()
- {
- return $this->pm;
- }
- /**
- * @param mixed $pm
- * @return UserWithdrawalLimitRecordEntity
- */
- public function setPm($pm): UserWithdrawalLimitRecordEntity
- {
- $this->pm = $pm;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getNumber()
- {
- return $this->number;
- }
- /**
- * @param mixed $number
- * @return UserWithdrawalLimitRecordEntity
- */
- public function setNumber($number): UserWithdrawalLimitRecordEntity
- {
- $this->number = $number;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getBalance()
- {
- return $this->balance;
- }
- /**
- * @param mixed $balance
- * @return UserWithdrawalLimitRecordEntity
- */
- public function setBalance($balance): UserWithdrawalLimitRecordEntity
- {
- $this->balance = $balance;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getStatus()
- {
- return $this->status;
- }
- /**
- * @param mixed $status
- * @return UserWithdrawalLimitRecordEntity
- */
- public function setStatus($status): UserWithdrawalLimitRecordEntity
- {
- $this->status = $status;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getTypeShop()
- {
- return $this->typeShop;
- }
- /**
- * @param mixed $typeShop
- * @return UserWithdrawalLimitRecordEntity
- */
- public function setTypeShop($typeShop): UserWithdrawalLimitRecordEntity
- {
- $this->typeShop = $typeShop;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getOrderSn()
- {
- return $this->orderSn;
- }
- /**
- * @param mixed $orderSn
- * @return UserWithdrawalLimitRecordEntity
- */
- public function setOrderSn($orderSn): UserWithdrawalLimitRecordEntity
- {
- $this->orderSn = $orderSn;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getTakeTime()
- {
- return $this->takeTime;
- }
- /**
- * @param mixed $takeTime
- * @return UserWithdrawalLimitRecordEntity
- */
- public function setTakeTime($takeTime): UserWithdrawalLimitRecordEntity
- {
- $this->takeTime = $takeTime;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getRemark()
- {
- return $this->remark;
- }
- /**
- * @param mixed $remark
- * @return UserWithdrawalLimitRecordEntity
- */
- public function setRemark($remark): UserWithdrawalLimitRecordEntity
- {
- $this->remark = $remark;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getCreateTime()
- {
- return $this->createTime;
- }
- /**
- * @param mixed $createTime
- * @return UserWithdrawalLimitRecordEntity
- */
- public function setCreateTime($createTime): UserWithdrawalLimitRecordEntity
- {
- $this->createTime = $createTime;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getUpdateTime()
- {
- return $this->updateTime;
- }
- /**
- * @param mixed $updateTime
- * @return UserWithdrawalLimitRecordEntity
- */
- public function setUpdateTime($updateTime): UserWithdrawalLimitRecordEntity
- {
- $this->updateTime = $updateTime;
- return $this;
- }
- }
|