1
13693261870
2022-09-16 762f2fb45db004618ba099aa3c0bd89dba1eb843
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
package com.landtool.lanbase.modules.sys.service;
 
import com.landtool.lanbase.modules.sys.entity.PubNews;
import com.landtool.lanbase.modules.sys.entity.PubNewsApi;
 
import java.util.List;
import java.util.Map;
 
/**
 * @author zimao.guo
 * @Description: TODO(${comments})
 * @date 2018-04-17 15:04:58
 */
public interface PubNewsService {
    
    PubNews queryObject(Integer newsid);
    
    List<PubNews> queryList(Map<String, Object> map);
    
    int queryTotal(Map<String, Object> map);
    
    void save(PubNews pubNews);
    
    void update(PubNews pubNews);
    
    void delete(Integer newsid);
    
    void deleteBatch(Integer[] newsids);
    
    int queryPubNewsWithSEQ();
    
    List<PubNewsApi> queryTopList(Integer num);
 
    List<PubNews> queryAllList(PubNews pubNews);
}