收支核对修改
This commit is contained in:
@@ -1,14 +1,13 @@
|
||||
<?php
|
||||
/*
|
||||
* @Descripttion:
|
||||
* @version:
|
||||
* @Descripttion:
|
||||
* @version:
|
||||
* @Author: kangkang
|
||||
* @Date: 2020-10-22 16:13:41
|
||||
* @LastEditors: kangkang
|
||||
* @LastEditTime: 2020-10-23 17:07:07
|
||||
* @LastEditTime: 2020-10-26 10:34:48
|
||||
*/
|
||||
|
||||
|
||||
namespace app\order\model;
|
||||
|
||||
use fastphp\base\Model;
|
||||
@@ -16,4 +15,14 @@ use fastphp\base\Model;
|
||||
class IncomeCheck extends Model
|
||||
{
|
||||
protected $table = 'income_check';
|
||||
}
|
||||
|
||||
/**
|
||||
* @description: 单独写
|
||||
* @param {*}
|
||||
* @return {*}
|
||||
*/
|
||||
public function getListSearch($where1, $where2, $fields = '*', $order = 'id desc', $limit = '50')
|
||||
{
|
||||
return $this->field($fields)->where($where1)->where($where2)->order($order)->limit($limit)->fetchAll();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user