1
zj
2024-05-22 e178d78da637bb469b2919f957d94219bc59d618
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);
}