admin
2019-07-30 573c491b4a1ba60e12a5678a01c1546c0077c1ee
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
package com.yeshi.fanli.dao.mybatis.homemodule;
 
import java.util.List;
 
import org.apache.ibatis.annotations.Param;
 
import com.yeshi.fanli.entity.bus.homemodule.SuperSpecial;
 
public interface SuperSpecialMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insert(SuperSpecial record);
 
    int insertSelective(SuperSpecial record);
 
    SuperSpecial selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(SuperSpecial record);
 
    int updateByPrimaryKey(SuperSpecial record);
    
    /**
     * 根据系统id、标识 获取品牌模块
     * @param systemId 系统id
     * @param card 品牌唯一标识
     * @return
     */
    List<SuperSpecial> listBySystemAndCard(@Param("systemId") Long systemId, @Param("card") String card);
}