sendJobsSql.php
1.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
namespace Model;
/**
 * 邮件发送任务
 * @author:dc
 * @time 2023/4/10 16:28
 * Class sendJobsSql
 * @package Model
 */
class sendJobsSql {
    /**
     * 表
     * @var string
     */
    public static $table = 'send_jobs';
    /**
     * 获取需要发送的邮件
     * @author:dc
     * @time 2023/4/11 14:56
     * @return string
     */
    public static function sendList($limit):string {
        // 控制在500数量,协程数量就控制
        return "select * from `".self::$table."` where `status` = 0 and `send_time` <= ".time()." limit {$limit}";
    }
    /**
     * 更新状态
     * @param int $id
     * @param int $status
     * @param null $db
     * @author:dc
     * @time 2023/4/11 16:06
     */
    public static function upStatus(int $id, int $status, $db=null){
        $db = $db?:db();
        // 更新状态
        $db->update(\Model\sendJobsSql::$table,[
            'status'    =>  $status
        ],dbWhere([
            'id'    =>  $id
        ]));
    }
}