Administrator
2018-10-30 c0c91fbda1ba601c4c8cb6d12fd43dfbe02eea5d
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
package com.yeshi.fanli.dao.mybatis.homemodule;
 
import java.util.List;
 
import org.apache.ibatis.annotations.Param;
 
import com.yeshi.fanli.entity.bus.homemodule.SuperHomeNavbar;
 
public interface SuperHomeNavbarMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insert(SuperHomeNavbar record);
 
    int insertSelective(SuperHomeNavbar record);
 
    SuperHomeNavbar selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(SuperHomeNavbar record);
 
    int updateByPrimaryKey(SuperHomeNavbar record);
    
    /**
     * 根据系统id获取导航
     * @param systemId 系统id
     * @return
     */
    List<SuperHomeNavbar> listBySystem(@Param("systemId") Long systemId);
    
    
}