125 lines
2.2 KiB
PHP
125 lines
2.2 KiB
PHP
<?php
|
|
namespace app\shop\model;
|
|
|
|
use app\BaseModel;
|
|
use longbingcore\wxcore\PushMsgModel;
|
|
use think\facade\Db;
|
|
|
|
class SeckillInfo extends BaseModel
|
|
{
|
|
//定义表名
|
|
protected $name = 'lbfarm_v2_seckill_info';
|
|
|
|
|
|
/**
|
|
* @author chenniang
|
|
* @DataTime: 2022-08-24 13:52
|
|
* @功能说明:发送秒杀提醒
|
|
*/
|
|
public function sendMsg($uniacid){
|
|
|
|
$dis[] = ['a.uniacid','=',$uniacid];
|
|
|
|
$dis[] = ['a.status','=',1];
|
|
|
|
$dis[] = ['b.status','=',1];
|
|
|
|
$dis[] = ['b.atv_status','=',1];
|
|
|
|
$dis[] = ['b.start_time','<',time()+120];
|
|
|
|
$data = $this->alias('a')
|
|
->join('lbfarm_v2_seckill_list b','a.kill_id = b.id')
|
|
->join('lbfarm_v2_seckill_goods c','c.atv_id = b.id')
|
|
->where($dis)
|
|
->field('a.*')
|
|
->group('a.id')
|
|
->select()
|
|
->toArray();
|
|
|
|
if(!empty($data)){
|
|
|
|
$push_model = new PushMsgModel($uniacid);
|
|
|
|
foreach ($data as $v){
|
|
|
|
$this->dataUpdate(['id'=>$v['id']],['status'=>2]);
|
|
|
|
$v['id'] = $v['goods_id'];
|
|
|
|
$push_model->sendMsg($v,15);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
* @author chenniang
|
|
* @DataTime: 2020-09-29 11:04
|
|
* @功能说明:添加
|
|
*/
|
|
public function dataAdd($data){
|
|
|
|
$res = $this->insert($data);
|
|
|
|
return $res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* @author chenniang
|
|
* @DataTime: 2020-09-29 11:05
|
|
* @功能说明:编辑
|
|
*/
|
|
public function dataUpdate($dis,$data){
|
|
|
|
$res = $this->where($dis)->update($data);
|
|
|
|
return $res;
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
* @author chenniang
|
|
* @DataTime: 2020-09-29 11:06
|
|
* @功能说明:列表
|
|
*/
|
|
public function dataList($dis,$page){
|
|
|
|
$data = $this->where($dis)->order('top desc,id desc')->paginate($page)->toArray();
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
* @author chenniang
|
|
* @DataTime: 2020-09-29 11:43
|
|
* @功能说明:
|
|
*/
|
|
public function dataInfo($dis){
|
|
|
|
$data = $this->where($dis)->find();
|
|
|
|
return !empty($data)?$data->toArray():[];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |