peternameyakj
2024-07-30 f23b33bbb9eaff76cac5b69e3b793fc7910fb0fa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package project.wallet;
 
import kernel.web.ResultObject;
import project.data.DataService;
import project.party.PartyService;
import project.syspara.SysparaService;
 
import java.io.Serializable;
 
public interface WalletGatherService {
 
    public WalletGather getWalletGatherByPartyId(Serializable partyId, DataService dataService);
 
    public WalletGather save(String partyId);
 
    public void update(String partyId, String currency,double amount,String mark);
 
    public ResultObject transfer(String partyId, String currency, String fromTo, String amount, String safeword, PartyService partyService, SysparaService sysparaService);
 
    public ResultObject getParameter(String partyId, String currency, String fromTo);
}