admin
2020-05-20 98b1a0affd69bbe63223c21fdd2c404e8bedfccb
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
package com.yeshi.fanli.service.inter.homemodule;
 
import java.util.List;
 
import com.yeshi.fanli.entity.bus.homemodule.SuperSpecial;
 
/**
 *  专题-系统
 * 
 * @author Administrator
 *
 */
public interface SuperSpecialService {
 
    public int deleteByPrimaryKey(Long id);
 
    public int insert(SuperSpecial record);
 
    public int insertSelective(SuperSpecial record);
 
    public SuperSpecial selectByPrimaryKey(Long id);
 
    public int updateByPrimaryKeySelective(SuperSpecial record);
 
    public int updateByPrimaryKey(SuperSpecial record);
    
    
    /**
     * 根据系统id、标识 获取品牌模块
     * @param systemId 系统id
     * @param card 品牌唯一标识
     * @return
     */
    List<SuperSpecial> listBySystemAndCard(Long systemId, String card);
 
 
    /**
     * 根据系统id、标识 获取品牌模块 + 缓存
     * @param systemId 系统id
     * @param card 品牌唯一标识
     * @return
     */
    List<SuperSpecial> listBySystemAndCardCache(Long systemId, String card);
 
}