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