CouponType.php 334 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: zilongs
  5. * Date: 20-9-30
  6. * Time: 下午11:44
  7. */
  8. namespace App\Models;
  9. class CouponType extends BaseModel
  10. {
  11. public function coupon (){
  12. return $this->belongsTo(Coupon::class);
  13. }
  14. public function userCoupon (){
  15. return $this->belongsTo(UserCoupon::class);
  16. }
  17. }