Base.php
1.5 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
namespace app\api\model;
use think\Model;
/**
* 模型基类
*/
abstract class Base extends Model
{
public $allCount = 0;
protected $resultSetType = 'collection';
/**
* 列表
* @param $map
* @param $p
* @param $row
* @param string $order
* @param $fields
* @return $lists
*/
public function lists($map, $p, $row, $order = 'id desc', $fields = true)
{
$order || $order = 'id desc';
$lists = $this->field($fields)->where($map)->page($p, $row)->order($order)->select()->toArray();
if (!empty($lists)) {
$this->allCount = $this->where($map)->count();
}
return $lists;
}
/**
* 详情
* @param $data
* @return $info
*/
protected function read($data)
{
$info = $this->where($data)->find();
if (!empty($info)) {
$info = $info->toArray();
}
return $info;
}
/*
* 新增
* @param array $data
* @return bool
*/
public function add($data)
{
return $this->allowField(true)->save($data);
}
/*
* 更新
* @param array $update
* @param array $condition
* @return bool
*/
public function edit($update, $condition)
{
return $this->allowField(true)->save($update, $condition);
}
/*
* 删除
* @param array $condition
* @return bool
*/
public function del($condition)
{
return $this->destroy($condition);
}
}