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