select(); return $result; } public function findSystempayment($systemPayment_id) { $result = $this->where(['systemPayment_id'=>$systemPayment_id])->find(); return $result; } public function updateSystempayment($systemPayment_id, $data) { $result = $this->where(['systemPayment_id'=>$systemPayment_id])->update($data); return $result; } }