xinyb
2024-07-18 80430d52f7716e3eb3e517dc96f94c4a6f9657bf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.yc.sdk.shopping.service;
 
import java.util.List;
import java.util.Map;
 
import com.yc.sdk.shopping.entity.CurrencyEntity;
 
public interface CurrencyIfc {
 
    /**
     * 取所有币种
     * @return
     */
    public List<CurrencyEntity> getCurrencys() ;
    
    /**
     * 仅取本位币
     * @return
     */
    public CurrencyEntity getUserCurrency(String userCode) ;
    
    /**
     * 获取指定币种
     * @param currency
     * @return
     */
    public CurrencyEntity getCurrency(String currency) ; 
    
    public CurrencyEntity getCurrencyEntity(Map<String,Object> map);
}