1
zj
2024-05-29 326e3f167ec3e7942911b027e2b63e64476e4ad4
1
2
3
4
5
6
7
8
9
10
11
12
package com.nq.service;
 
import java.math.BigDecimal;
 
public interface IPriceServices {
 
    BigDecimal getNowPrice(String stockCode);
 
    BigDecimal getNowPrice(String stockCode, String stockType);
 
    BigDecimal getPrice(String stockCode);
}