From d2ee731b6a64fa002bceddebf0cc59c78b6c17ce Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期三, 27 二月 2019 10:12:31 +0800 Subject: [PATCH] 邀请成功消息提醒 --- fanli/src/main/java/com/yeshi/fanli/service/impl/homemodule/SpecialServiceImpl.java | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/service/impl/homemodule/SpecialServiceImpl.java b/fanli/src/main/java/com/yeshi/fanli/service/impl/homemodule/SpecialServiceImpl.java index 36a7495..f2b47b4 100644 --- a/fanli/src/main/java/com/yeshi/fanli/service/impl/homemodule/SpecialServiceImpl.java +++ b/fanli/src/main/java/com/yeshi/fanli/service/impl/homemodule/SpecialServiceImpl.java @@ -107,12 +107,19 @@ @Override @Cacheable(value = "configCache", key = "'listBySystemAndCard-'+#card+'-'+#systemId") - public List<Special> listBySystemAndCard( String card, Long systemId) { + public List<Special> listBySystemAndCard(String card, Long systemId) { return specialMapper.listBySystemAndCard(card, systemId); } @Override + @Cacheable(value = "configCache", key = "'listPageBySystemAndCard-'+#card+'-'+#systemId+'-'+#start +'-'+#count") + public List<Special> listPageBySystemAndCard(long start, int count, String card, Long systemId) { + return specialMapper.listPageBySystemAndCard(start, count, card, systemId); + } + + + @Override public void uploadPicture(MultipartFile file, Special record, Long cardId) throws Exception { InputStream inputStream = file.getInputStream(); -- Gitblit v1.8.0