admin
2022-04-26 36681e15e12aaa9135f69260472de65303cdcba3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package com.yeshi.makemoney.app.service.inter.msg;
 
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;
 
 
public interface AppPageNotifyMsgService {
 
    /**
     * 获取列表
     *
     * @param appPageNotifyMsgQuery
     * @param page
     * @param pageSize
     * @return
     */
    public List<AppPageNotifyMsg> list(AppPageNotifyMsgQuery appPageNotifyMsgQuery, int page, int pageSize);
 
    /**
     *
     */
    public long count(AppPageNotifyMsgQuery appPageNotifyMsgQuery);
 
    /**
     *
     */
    public AppPageNotifyMsg get(String id);
 
    /**
     *
     */
    public void add(AppPageNotifyMsg appPageNotifyMsg) throws Exception;
 
    /**
     *
     */
    public void update(AppPageNotifyMsg appPageNotifyMsg);
 
    /**
     *
     */
    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);
 
 
}