package com.example.practice.service; public interface UserService { /** * 转账功能 */ boolean transfer(String fromAccount, String toAccount, int money); }