AisCouponSubsidize.php 490 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2017 https://www.sapixx.com All rights reserved.
  4. * @license Licensed (http://www.apache.org/licenses/LICENSE-2.0).
  5. * @author pillar<ltmn@qq.com>
  6. * 关联优惠券ID用于补贴
  7. */
  8. namespace app\ais\model;
  9. use think\Model;
  10. use util\Util;
  11. class AisCouponSubsidize extends Model
  12. {
  13. /**
  14. * 补贴优惠券
  15. * @return void
  16. */
  17. public function coupon(){
  18. return $this->hasOne('AisCoupon','id','coupon_id');
  19. }
  20. }