Parcourir la source

解决商品信息查询对于时间戳判断错误的问题

zhou.xiaoning il y a 4 ans
Parent
commit
b0bcc9ddfa
1 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 3 3
      models/ermcpGoods.go

+ 3 - 3
models/ermcpGoods.go

@@ -86,9 +86,9 @@ func GetErmcpGoodses(lastUpdateTime string) ([]ErmcpGoods, error) {
 
 	// 对比数据库与终端的更新时间戳
 	if len(lastUpdateTime) > 0 {
-		ermcpGoods := make([]ErmcpGoods, 0)
-		engine.Table("GOODS G").Where(fmt.Sprintf("G.MODIFYTIME > to_date('%s','yyyy-MM-dd hh24:mi:ss')", lastUpdateTime)).Find(&ermcpGoods)
-		if len(ermcpGoods) == 0 {
+		goods := make([]Goods, 0)
+		engine.Table("GOODS G").Where(fmt.Sprintf("G.MODIFYTIME > to_date('%s','yyyy-MM-dd hh24:mi:ss')", lastUpdateTime)).Find(&goods)
+		if len(goods) == 0 {
 			return make([]ErmcpGoods, 0), nil
 		}
 	}