From 3a8e1524dcf0eeb610d38123d5f0a3ef838379cd Mon Sep 17 00:00:00 2001 From: linzhijie <19970921lzj> Date: 星期一, 12 四月 2021 15:44:53 +0800 Subject: [PATCH] Merge branch '20210406-maqv2' into 20210412-youhua --- src/main/java/com/ots/project/exam/service/impl/TTextContentServiceImpl.java | 66 ++++---------------------------- 1 files changed, 9 insertions(+), 57 deletions(-) diff --git a/src/main/java/com/ots/project/exam/service/impl/TTextContentServiceImpl.java b/src/main/java/com/ots/project/exam/service/impl/TTextContentServiceImpl.java index 131d4f8..778cf9c 100644 --- a/src/main/java/com/ots/project/exam/service/impl/TTextContentServiceImpl.java +++ b/src/main/java/com/ots/project/exam/service/impl/TTextContentServiceImpl.java @@ -1,5 +1,4 @@ package com.ots.project.exam.service.impl; - import com.ots.common.utils.DateUtils; import com.ots.common.utils.text.Convert; import com.ots.project.exam.domain.TTextContent; @@ -9,101 +8,55 @@ import com.ots.project.tool.exam.JsonUtil; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; - import java.util.Date; import java.util.List; import java.util.function.Function; import java.util.stream.Collectors; -/** - * 棰樼洰鐨勫唴瀹筍ervice涓氬姟灞傚鐞� - * - * @author ots - * @date 2019-11-24 - */ @Service public class TTextContentServiceImpl implements ITTextContentService { @Autowired private TTextContentMapper tTextContentMapper; - - /** - * 鏌ヨ棰樼洰鐨勫唴瀹� - * - * @param id 棰樼洰鐨勫唴瀹笽D - * @return 棰樼洰鐨勫唴瀹� - */ + @Override public TTextContent selectTTextContentById(Long id) { return tTextContentMapper.selectTTextContentById(id); } - - //鐢╥n鐨勬柟寮忔煡璇� + @Override public List<TTextContent> selectTTextContentByIds(String[] ids) { return tTextContentMapper.selectTTextContentByIds(ids); } - @Override public List<TTextContentAndQuestion> selectTextContentAndQuestion(String[] ids) { return tTextContentMapper.selectTextContentAndQuestion(ids); } - - /** - * 鏌ヨ棰樼洰鐨勫唴瀹瑰垪琛� - * - * @param tTextContent 棰樼洰鐨勫唴瀹� - * @return 棰樼洰鐨勫唴瀹� - */ + @Override public List<TTextContent> selectTTextContentList(TTextContent tTextContent) { return tTextContentMapper.selectTTextContentList(tTextContent); } - - /** - * 鏂板棰樼洰鐨勫唴瀹� - * - * @param tTextContent 棰樼洰鐨勫唴瀹� - * @return 缁撴灉 - */ + @Override public int insertTTextContent(TTextContent tTextContent) { tTextContent.setCreateTime(DateUtils.getNowDate()); return tTextContentMapper.insertTTextContent(tTextContent); } - - /** - * 淇敼棰樼洰鐨勫唴瀹� - * - * @param tTextContent 棰樼洰鐨勫唴瀹� - * @return 缁撴灉 - */ + @Override public int updateTTextContent(TTextContent tTextContent) { tTextContent.setUpdateTime(DateUtils.getNowDate()); return tTextContentMapper.updateTTextContent(tTextContent); } - - /** - * 鍒犻櫎棰樼洰鐨勫唴瀹瑰璞� - * - * @param ids 闇�瑕佸垹闄ょ殑鏁版嵁ID - * @return 缁撴灉 - */ + @Override public int deleteTTextContentByIds(String ids) { return tTextContentMapper.deleteTTextContentByIds(Convert.toStrArray(ids)); } - - /** - * 鍒犻櫎棰樼洰鐨勫唴瀹逛俊鎭� - * - * @param id 棰樼洰鐨勫唴瀹笽D - * @return 缁撴灉 - */ + public int deleteTTextContentById(Long id) { return tTextContentMapper.deleteTTextContentById(id); } - @Override public <T, R> TTextContent jsonConvertInsert(List<T> list, Date now, Function<? super T, ? extends R> mapper) { String frameTextContent = null; @@ -114,10 +67,9 @@ frameTextContent = JsonUtil.toJsonStr(mapList); } TTextContent textContent = new TTextContent(frameTextContent, now); - //insertByFilter(textContent); cache useless + return textContent; } - @Override public <T, R> TTextContent jsonConvertUpdate(TTextContent textContent, List<T> list, Function<? super T, ? extends R> mapper) { String frameTextContent = null; @@ -128,7 +80,7 @@ frameTextContent = JsonUtil.toJsonStr(mapList); } textContent.setContent(frameTextContent); - //this.updateByIdFilter(textContent); cache useless + return textContent; } } -- Gitblit v1.9.1