19 lines
425 B
PHP
19 lines
425 B
PHP
<?php
|
|
|
|
namespace app\model;
|
|
|
|
class Income extends Base
|
|
{
|
|
|
|
protected $table = 'pg_income_expenditure_detail';
|
|
|
|
public function getIncomeExpenditureDetail($where = [], $field = [], $order = []) {
|
|
return Income::where($where)->field($field)->order($order)->select();
|
|
}
|
|
|
|
// 更新确认金额相关
|
|
public function updConfirmAmount($where, $data) {
|
|
return Income::save($data, $where);
|
|
}
|
|
|
|
} |