元后台
This commit is contained in:
29
app/api/model/FinanceOperation.php
Normal file
29
app/api/model/FinanceOperation.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
/*
|
||||
* @Descripttion:
|
||||
* @version:
|
||||
* @Author: kangkang
|
||||
* @Date: 2020-10-22 16:13:41
|
||||
* @LastEditors: kangkang
|
||||
* @LastEditTime: 2020-10-30 14:44:17
|
||||
*/
|
||||
|
||||
|
||||
namespace app\api\model;
|
||||
|
||||
use fastphp\base\Model;
|
||||
|
||||
class FinanceOperation extends Model
|
||||
{
|
||||
protected $table = 'finance_op';
|
||||
|
||||
/**
|
||||
* @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