From 3470d9afd83f6e6bbe0736c36a2d0ffafbab3bf8 Mon Sep 17 00:00:00 2001 From: gazebo Date: Thu, 21 Feb 2019 10:23:12 +0800 Subject: [PATCH] - JxBadCommentsEx changed to JxBadCommentsExt --- business/jxstore/cms/store.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/business/jxstore/cms/store.go b/business/jxstore/cms/store.go index 5ec980c5a..0c0abec40 100644 --- a/business/jxstore/cms/store.go +++ b/business/jxstore/cms/store.go @@ -45,7 +45,7 @@ type StoresInfo struct { Stores []*StoreExt `json:"stores"` } -type JxBadCommentsEx struct { +type JxBadCommentsExt struct { legacymodel.JxBadComments StoreName string `json:"storeName"` CityName string `json:"cityName"` @@ -648,7 +648,7 @@ func TmpGetJxBadCommentsByStoreId(ctx *jxcontext.Context, storeIDs []int, offset } sql += " LIMIT ? OFFSET ?" sqlParams = append(sqlParams, pageSize, offset) - var commentList []*JxBadCommentsEx + var commentList []*JxBadCommentsExt dao.Begin(db) defer func() { dao.Rollback(db)