Payment.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <?php
  2. namespace App\Http\Models;
  3. use Auth;
  4. use Eloquent;
  5. use Illuminate\Database\Eloquent\Builder;
  6. use Illuminate\Database\Eloquent\Model;
  7. use Illuminate\Support\Carbon;
  8. /**
  9. * 支付单
  10. * Class Payment
  11. *
  12. * @package App\Http\Models
  13. * @mixin Eloquent
  14. * @property int $id
  15. * @property string|null $sn
  16. * @property int $user_id 用户ID
  17. * @property int|null $oid 本地订单ID
  18. * @property string|null $order_sn 本地订单长ID
  19. * @property int $pay_way 支付方式:1-微信、2-支付宝
  20. * @property int $amount 金额,单位分
  21. * @property int $qr_id 有赞生成的支付单ID
  22. * @property string|null $qr_url 有赞生成的支付二维码URL
  23. * @property string|null $qr_code 有赞生成的支付二维码图片base64
  24. * @property string|null $qr_local_url 支付二维码的本地存储URL
  25. * @property int $status 状态:-1-支付失败、0-等待支付、1-支付成功
  26. * @property Carbon $created_at
  27. * @property Carbon $updated_at
  28. * @property-read mixed $pay_way_label
  29. * @property-read mixed $status_label
  30. * @property-read Order|null $order
  31. * @property-read User $user
  32. * @method static Builder|Payment newModelQuery()
  33. * @method static Builder|Payment newQuery()
  34. * @method static Builder|Payment query()
  35. * @method static Builder|Payment uid()
  36. * @method static Builder|Payment whereAmount($value)
  37. * @method static Builder|Payment whereCreatedAt($value)
  38. * @method static Builder|Payment whereId($value)
  39. * @method static Builder|Payment whereOid($value)
  40. * @method static Builder|Payment whereOrderSn($value)
  41. * @method static Builder|Payment wherePayWay($value)
  42. * @method static Builder|Payment whereQrCode($value)
  43. * @method static Builder|Payment whereQrId($value)
  44. * @method static Builder|Payment whereQrLocalUrl($value)
  45. * @method static Builder|Payment whereQrUrl($value)
  46. * @method static Builder|Payment whereSn($value)
  47. * @method static Builder|Payment whereStatus($value)
  48. * @method static Builder|Payment whereUpdatedAt($value)
  49. * @method static Builder|Payment whereUserId($value)
  50. */
  51. class Payment extends Model
  52. {
  53. protected $table = 'payment';
  54. protected $primaryKey = 'id';
  55. protected $appends = ['status_label'];
  56. function scopeUid($query)
  57. {
  58. return $query->where('user_id', Auth::user()->id);
  59. }
  60. function user()
  61. {
  62. return $this->belongsTo(User::class, 'user_id', 'id');
  63. }
  64. function order()
  65. {
  66. return $this->belongsTo(Order::class, 'oid', 'oid');
  67. }
  68. function getAmountAttribute($value)
  69. {
  70. return $value/100;
  71. }
  72. function setAmountAttribute($value)
  73. {
  74. return $this->attributes['amount'] = $value*100;
  75. }
  76. // 订单状态
  77. function getStatusLabelAttribute()
  78. {
  79. switch($this->attributes['status']){
  80. case -1:
  81. $status_label = '支付失败';
  82. break;
  83. case 1:
  84. $status_label = '支付成功';
  85. break;
  86. case 0:
  87. default:
  88. $status_label = '等待支付';
  89. }
  90. return $status_label;
  91. }
  92. // 支付方式
  93. function getPayWayLabelAttribute()
  94. {
  95. switch($this->attributes['pay_way']){
  96. case 1:
  97. $pay_way_label = '微信';
  98. break;
  99. case 2:
  100. default:
  101. $pay_way_label = '支付宝';
  102. }
  103. return $pay_way_label;
  104. }
  105. }