select($select) -> where($where) -> first(); return $result; } /** * 支付密码修改 * * @access public * @param mixed $where 查询条件 * @param mixed $updateData 修改字段 * @return array JsonString */ public function updatePayPassword ($where, $updateData) { $result = $this -> where($where) -> update($updateData); return $result; } }