UserExtract.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <?php
  2. /**
  3. *
  4. * @author: xaboy<365615158@qq.com>
  5. * @day: 2018/3/3
  6. */
  7. namespace app\models\user;
  8. use crmeb\basic\BaseModel;
  9. use crmeb\services\workerman\ChannelService;
  10. use crmeb\traits\ModelTrait;
  11. /**
  12. * TODO 用户提现
  13. * Class UserExtract
  14. * @package app\models\user
  15. */
  16. class UserExtract extends BaseModel
  17. {
  18. /**
  19. * 数据表主键
  20. * @var string
  21. */
  22. protected $pk = 'id';
  23. /**
  24. * 模型名称
  25. * @var string
  26. */
  27. protected $name = 'user_extract';
  28. use ModelTrait;
  29. //审核中
  30. const AUDIT_STATUS = 0;
  31. //未通过
  32. const FAIL_STATUS = -1;
  33. //已提现
  34. const SUCCESS_STATUS = 1;
  35. protected static $extractType = ['alipay','bank','weixin'];
  36. protected static $extractTypeMsg = ['alipay'=>'支付宝','bank'=>'银行卡','weixin'=>'微信'];
  37. protected static $status = array(
  38. -1=>'未通过',
  39. 0 =>'审核中',
  40. 1 =>'已提现'
  41. );
  42. /**
  43. * 用户自主提现记录提现记录,后台执行审核
  44. * @param array $userInfo 用户个人信息
  45. * @param array $data 提现详细信息
  46. * @return bool
  47. */
  48. public static function userExtract($userInfo,$data){
  49. if(!in_array($data['extract_type'],self::$extractType))
  50. return self::setErrorInfo('提现方式不存在');
  51. $userInfo = User::get($userInfo['uid']);
  52. $extractPrice = $userInfo['brokerage_price'];
  53. if($extractPrice < 0) return self::setErrorInfo('提现佣金不足'.$data['money']);
  54. }
  55. /**
  56. * 获得用户最后一次提现信息
  57. * @param $openid
  58. * @return mixed
  59. */
  60. public static function userLastInfo($uid)
  61. {
  62. return self::where(compact('uid'))->order('add_time DESC')->find();
  63. }
  64. /**
  65. * 获得用户提现总金额
  66. * @param $uid
  67. * @return mixed
  68. */
  69. public static function userExtractTotalPrice($uid,$status=self::SUCCESS_STATUS)
  70. {
  71. return self::where('uid',$uid)->where('status',$status)->value('SUM(extract_price)')?:0;
  72. }
  73. /**
  74. * 用户提现记录列表
  75. * @param int $uid 用户uid
  76. * @param int $first 截取行数
  77. * @param int $limit 截取数
  78. * @return \think\Collection
  79. * @throws \think\db\exception\DataNotFoundException
  80. * @throws \think\db\exception\ModelNotFoundException
  81. * @throws \think\exception\DbException
  82. */
  83. public static function extractList($uid,$first = 0,$limit = 8)
  84. {
  85. $list=UserExtract::where('uid',$uid)->order('add_time desc')->limit($first,$limit)->select();
  86. foreach($list as &$v){
  87. $v['add_time']=date('Y/m/d',$v['add_time']);
  88. }
  89. return $list;
  90. }
  91. /**
  92. * 获取累计已提现佣金
  93. * @param $uid
  94. * @return float
  95. */
  96. public static function extractSum($uid)
  97. {
  98. return self::where('uid',$uid)->where('status',1)->sum('extract_price');
  99. }
  100. }