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