Coupon.php 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Builder;
  4. use Illuminate\Database\Eloquent\Model;
  5. use Illuminate\Database\Eloquent\SoftDeletes;
  6. /**
  7. * 优惠券
  8. *
  9. * @property int $id
  10. * @property string $name 优惠券名称
  11. * @property string $logo 优惠券LOGO
  12. * @property string $sn 优惠券码
  13. * @property int $type 类型:1-抵用券、2-折扣券、3-充值券
  14. * @property int $usage_count 可使用次数
  15. * @property int $amount 金额,单位分
  16. * @property float $discount 折扣
  17. * @property int $rule 使用限制,单位分
  18. * @property int $available_start 有效期开始
  19. * @property int $available_end 有效期结束
  20. * @property int $status 状态:0-未使用、1-已使用、2-已失效
  21. * @property \Illuminate\Support\Carbon $created_at 创建时间
  22. * @property \Illuminate\Support\Carbon $updated_at 最后更新时间
  23. * @property \Illuminate\Support\Carbon|null $deleted_at 删除时间
  24. * @method static Builder|Coupon newModelQuery()
  25. * @method static Builder|Coupon newQuery()
  26. * @method static Builder|Coupon onlyTrashed()
  27. * @method static Builder|Coupon query()
  28. * @method static Builder|Coupon type($type)
  29. * @method static Builder|Coupon whereAmount($value)
  30. * @method static Builder|Coupon whereAvailableEnd($value)
  31. * @method static Builder|Coupon whereAvailableStart($value)
  32. * @method static Builder|Coupon whereCreatedAt($value)
  33. * @method static Builder|Coupon whereDeletedAt($value)
  34. * @method static Builder|Coupon whereDiscount($value)
  35. * @method static Builder|Coupon whereId($value)
  36. * @method static Builder|Coupon whereLogo($value)
  37. * @method static Builder|Coupon whereName($value)
  38. * @method static Builder|Coupon whereRule($value)
  39. * @method static Builder|Coupon whereSn($value)
  40. * @method static Builder|Coupon whereStatus($value)
  41. * @method static Builder|Coupon whereType($value)
  42. * @method static Builder|Coupon whereUpdatedAt($value)
  43. * @method static Builder|Coupon whereUsageCount($value)
  44. * @method static Builder|Coupon withTrashed()
  45. * @method static Builder|Coupon withoutTrashed()
  46. * @mixin \Eloquent
  47. */
  48. class Coupon extends Model {
  49. use SoftDeletes;
  50. protected $table = 'coupon';
  51. protected $dates = ['deleted_at'];
  52. // 筛选类型
  53. public function scopeType($query, $type) {
  54. return $query->whereType($type);
  55. }
  56. public function getAmountAttribute($value) {
  57. return $value / 100;
  58. }
  59. public function setAmountAttribute($value): void {
  60. $this->attributes['amount'] = $value * 100;
  61. }
  62. public function getDiscountAttribute($value) {
  63. return $value * 10;
  64. }
  65. public function setDiscountAttribute($value): void {
  66. $this->attributes['discount'] = $value / 10;
  67. }
  68. public function getRuleAttribute($value) {
  69. return $value / 100;
  70. }
  71. public function setRuleAttribute($value): void {
  72. $this->attributes['rule'] = $value * 100;
  73. }
  74. }