bodySql.php
686 字节
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
<?php
namespace Model;
/**
 * body
 * @author:dc
 * @time 2023/3/23 10:13
 * Class bodySql
 * @package Model
 */
class bodySql {
    public static $table = 'bodies';
    /**
     *
     * @param int $id
     * @return string
     * @author:dc
     * @time 2023/3/23 10:15
     */
    public static function first(int $id):string {
        return "select * from `".static::$table."` where `id` = {$id} limit 1";
    }
    /**
     * has
     * @param int $id
     * @return string
     * @author:dc
     * @time 2023/3/23 10:15
     */
    public static function has(int $id){
        return "select count(*) from `".static::$table."` where `id` = {$id} limit 1";
    }
}