123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Administrator
- * Date: 2020-09-12
- * Time: 13:54
- */
-
- namespace api\js\model;
-
-
- use think\Model;
- use think\model\concern\SoftDelete;
- class GoodsSeckillModel extends Model
- {
- use SoftDelete;
- protected $deleteTime = 'delete_time';
-
- public function goods()
- {
- return $this->belongsToMany('GoodsModel','goods_seckill_goods','goods_id','seckill_id');
- }
-
-
-
-
- public function getlist()
- {
- $list = $this::with('goods')->where('end_time','>',time())->order('start_time','asc')->select();
- return $list;
- }
- }
|