|
@@ -4,6 +4,7 @@ import (
|
|
|
"context"
|
|
|
"jyInfo/rpc/model/es"
|
|
|
"log"
|
|
|
+ "strconv"
|
|
|
"strings"
|
|
|
|
|
|
se "app.yhyue.com/moapp/jybase/encrypt"
|
|
@@ -60,7 +61,7 @@ func (l *SupplyInfoSearchLogic) SupplyInfoSearch(in *consumer.SupplyInfoSearchRe
|
|
|
Id: se.SE.EncodeString(common.InterfaceToStr(v["_id"])),
|
|
|
Province: common.InterfaceToStr(v["province"]),
|
|
|
City: common.InterfaceToStr(v["city"]),
|
|
|
- PublishTime: common.InterfaceToStr(v["publish_time"]),
|
|
|
+ PublishTime: strconv.FormatInt(common.Int64All(v["publish_time"]), 10),
|
|
|
Highlight: detail,
|
|
|
}
|
|
|
infos = append(infos, &info)
|