goodsquote.go 442 B

12345678910111213141516171819
  1. /**
  2. * @Author: zou.yingbin
  3. * @Create : 2021/8/13 12:46
  4. * @Modify : 2021/8/13 12:46
  5. */
  6. package mtpcache
  7. // GoodsQuote
  8. type GoodsQuote struct {
  9. GOODSCODE string `json:"goodscode"` // 商品代码
  10. LASTPRICE int64 `json:"lastprice"` // 最新价
  11. PRESETTLE int64 `json:"presettle"` // 昨结价
  12. }
  13. // GetQuotePrice 获取最新行情, 如若没有, 则获取昨结
  14. func GetQuotePrice(goodsCode string) (int64, bool) {
  15. return 0, false
  16. }