goodsquote.go 247 B

123456789101112
  1. /**
  2. * @Author: zou.yingbin
  3. * @Create : 2021/8/13 12:46
  4. * @Modify : 2021/8/13 12:46
  5. */
  6. package mtpcache
  7. // GetQuotePrice 获取最新行情, 如若没有, 则获取昨结
  8. func GetQuotePrice(goodsCode string) (int64, bool) {
  9. return 0, false
  10. }