From 91ddd96c12ec25aaf6d0cb38d54288d863ab2b58 Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期六, 10 七月 2021 18:10:38 +0800 Subject: [PATCH] 礼金红包兼容 --- fanli/src/main/java/com/yeshi/fanli/service/impl/user/HistorySearchServiceImpl.java | 35 +++++++++++++++++------------------ 1 files changed, 17 insertions(+), 18 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/service/impl/user/HistorySearchServiceImpl.java b/fanli/src/main/java/com/yeshi/fanli/service/impl/user/HistorySearchServiceImpl.java index b156bcb..e3eea45 100644 --- a/fanli/src/main/java/com/yeshi/fanli/service/impl/user/HistorySearchServiceImpl.java +++ b/fanli/src/main/java/com/yeshi/fanli/service/impl/user/HistorySearchServiceImpl.java @@ -1,29 +1,28 @@ package com.yeshi.fanli.service.impl.user; -import java.util.Date; - -import javax.annotation.Resource; - -import org.springframework.stereotype.Service; - -import com.yeshi.fanli.dao.mybatis.HistorySearchMapper; +import com.yeshi.fanli.dao.user.HistorySearchDao; import com.yeshi.fanli.entity.bus.search.HistorySearch; import com.yeshi.fanli.service.inter.user.HistorySearchService; +import org.springframework.stereotype.Service; + +import javax.annotation.Resource; +import java.util.Date; +import java.util.UUID; @Service public class HistorySearchServiceImpl implements HistorySearchService { - @Resource - private HistorySearchMapper historySearchMapper; + @Resource + private HistorySearchDao historySearchDao; - public void addHistorySearch(String searchKey, String bid) { - searchKey = searchKey != null && searchKey.length() > 64 ? searchKey.substring(0, 64) : searchKey; - HistorySearch historySearch = new HistorySearch(); - historySearch.setName(searchKey); - historySearch.setBusinessId(bid); - historySearch.setCreatetime(new Date()); - historySearch.setState(0); - historySearchMapper.insertSelective(historySearch); - } + public void addHistorySearch(HistorySearch search) { + if (search.getId() == null) { + search.setId(UUID.randomUUID().toString()); + } + if (search.getCreatetime() == null) { + search.setCreatetime(new Date()); + } + historySearchDao.save(search); + } } -- Gitblit v1.8.0