BankModel.class.php
1.03 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
<?php
/**
* 考试-题库表
* @author: houyingcai
* @email: 594609175@qq.com
* @date : 2017-05-19 18:05:10
* @version $Id$
*/
namespace Common\Model;
class BankModel extends AbstractModel
{
/**
* 构造方法
*/
public function __construct()
{
parent::__construct();
}
/**
* 给字段添加自动添加一个数
*
* @author houyingcai
* @param string $field
* @param array $condition
* @param int $step
*
* @return boolean
*/
public function setIncNum($field, $condition = [], $step = 1)
{
$this->where($condition);
return $this->setInc($field, $step);
}
/**
* 给字段添加自动减少一个数
*
* @author houyingcai
* @param string $field
* @param array $condition
* @param int $step
*
* @return boolean
*/
public function setDecNum($field, $condition = [], $step = 1)
{
$this->where($condition);
return $this->setDec($field, $step);
}
}