From 36681e15e12aaa9135f69260472de65303cdcba3 Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期二, 26 四月 2022 19:10:45 +0800 Subject: [PATCH] 任务优化 --- app/src/main/java/com/yeshi/makemoney/app/service/inter/msg/AppPageNotifyMsgService.java | 61 +++++++++++++++++++----------- 1 files changed, 39 insertions(+), 22 deletions(-) diff --git a/app/src/main/java/com/yeshi/makemoney/app/service/inter/msg/AppPageNotifyMsgService.java b/app/src/main/java/com/yeshi/makemoney/app/service/inter/msg/AppPageNotifyMsgService.java index c76eca0..a31b1cb 100644 --- a/app/src/main/java/com/yeshi/makemoney/app/service/inter/msg/AppPageNotifyMsgService.java +++ b/app/src/main/java/com/yeshi/makemoney/app/service/inter/msg/AppPageNotifyMsgService.java @@ -3,8 +3,12 @@ import java.lang.Exception; import javax.annotation.Resource; import java.util.Date; + +import com.yeshi.makemoney.app.entity.SystemEnum; import org.yeshi.utils.bean.BeanUtil; + import java.util.List; + import com.yeshi.makemoney.app.entity.msg.AppPageNotifyMsg; import com.yeshi.makemoney.app.service.inter.msg.AppPageNotifyMsgService; import com.yeshi.makemoney.app.service.query.msg.AppPageNotifyMsgQuery; @@ -13,38 +17,51 @@ public interface AppPageNotifyMsgService { /** - * 鑾峰彇鍒楄〃 - * @param appPageNotifyMsgQuery - * @param page - * @param pageSize - * @return - */ - public List<AppPageNotifyMsg> list(AppPageNotifyMsgQuery appPageNotifyMsgQuery, int page, int pageSize) ; + * 鑾峰彇鍒楄〃 + * + * @param appPageNotifyMsgQuery + * @param page + * @param pageSize + * @return + */ + public List<AppPageNotifyMsg> list(AppPageNotifyMsgQuery appPageNotifyMsgQuery, int page, int pageSize); /** - * - */ - public long count(AppPageNotifyMsgQuery appPageNotifyMsgQuery) ; + * + */ + public long count(AppPageNotifyMsgQuery appPageNotifyMsgQuery); /** - * - */ - public AppPageNotifyMsg get(String id) ; + * + */ + public AppPageNotifyMsg get(String id); /** - * - */ - public void add(AppPageNotifyMsg appPageNotifyMsg) throws Exception; + * + */ + public void add(AppPageNotifyMsg appPageNotifyMsg) throws Exception; /** - * - */ - public void update(AppPageNotifyMsg appPageNotifyMsg) ; + * + */ + public void update(AppPageNotifyMsg appPageNotifyMsg); /** - * - */ - public void delete(List<String> idList) ; + * + */ + public void delete(List<String> idList); + + + /** + * @return com.yeshi.makemoney.app.entity.msg.AppPageNotifyMsg + * @author hxh + * @description 鏍规嵁绫诲瀷鏌ヨ + * @date 10:53 2022/4/24 + * @param: system + * @param: type + * @param: date + **/ + public AppPageNotifyMsg selectByType(SystemEnum system, AppPageNotifyMsg.AppPageNotifyMsgType type, Date date); } -- Gitblit v1.8.0