截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

WithdrawApply.php 676B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace app\common\model;
  3. use app\common\basics\Models;
  4. use app\common\model\user\User;
  5. /**
  6. * Class WithdrawApply
  7. * @package app\common\model
  8. */
  9. class WithdrawApply extends Models
  10. {
  11. //提现状态
  12. const STATUS_WAIT = 1; // 待提现
  13. const STATUS_ING = 2; // 提现中
  14. const STATUS_SUCCESS = 3; // 提现成功
  15. const STATUS_FAIL = 4; //提现失败
  16. /**
  17. * @notes 管理User模型
  18. * @return \think\model\relation\HasOne
  19. * @author suny
  20. * @date 2021/7/13 6:45 下午
  21. */
  22. public function user()
  23. {
  24. return $this->hasOne(User::class, 'id', 'user_id')
  25. ->field('id,sn,nickname,avatar');
  26. }
  27. }