| | |
| | | package com.yeshi.fanli.service.inter.homemodule;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import com.yeshi.fanli.entity.bus.homemodule.SuperHomeNavbar;
|
| | |
|
| | | /**
|
| | | * APP导航栏
|
| | | * |
| | | * @author Administrator
|
| | | *
|
| | | */
|
| | | public interface SuperHomeNavbarService {
|
| | |
|
| | | public int deleteByPrimaryKey(Long id);
|
| | |
|
| | | public int insert(SuperHomeNavbar record);
|
| | |
|
| | | public int insertSelective(SuperHomeNavbar record);
|
| | |
|
| | | public SuperHomeNavbar selectByPrimaryKey(Long id);
|
| | |
|
| | | public int updateByPrimaryKeySelective(SuperHomeNavbar record);
|
| | |
|
| | | public int updateByPrimaryKey(SuperHomeNavbar record);
|
| | |
|
| | | /**
|
| | | * 根据系统id获取导航
|
| | | * @param systemId 系统id
|
| | | * @return
|
| | | */
|
| | | public List<SuperHomeNavbar> listBySystem(Long systemId);
|
| | |
|
| | | |
| | | /**
|
| | | * 根据系统id获取导航 +缓存
|
| | | * @param systemId 系统id
|
| | | * @return
|
| | | */
|
| | | List<SuperHomeNavbar> listBySystemCache(Long systemId);
|
| | | |
| | | |
| | | /**
|
| | | * 根据导航栏id 批量查询
|
| | | * @param list
|
| | | * @return
|
| | | */
|
| | | List<SuperHomeNavbar> listByNavbarIds(List<Long> list);
|
| | | |
| | | |
| | | /**
|
| | | * 根据导航栏id 批量删除
|
| | | * @param list
|
| | | * @return
|
| | | */
|
| | | void deleteBatchByNavbarIds(List<Long> list);
|
| | | |
| | | /**
|
| | | * 根据系统id+导航id查询
|
| | | * @param systemId 系统id
|
| | | * @return
|
| | | */
|
| | | List<SuperHomeNavbar> querybyNavbarId(Long navbarId, Long systemId);
|
| | | |
| | | /**
|
| | | * 根据系统id+导航id 删除
|
| | | * @param systemId 系统id
|
| | | * @return
|
| | | */
|
| | | int deletebyNavbarId(Long navbarId, Long systemId);
|
| | | |
| | |
|
| | | }
|
| | | package com.yeshi.fanli.service.inter.homemodule; |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.yeshi.fanli.entity.bus.homemodule.SuperHomeNavbar; |
| | | |
| | | /** |
| | | * APP导航栏 |
| | | * |
| | | * @author Administrator |
| | | * |
| | | */ |
| | | public interface SuperHomeNavbarService { |
| | | |
| | | public int deleteByPrimaryKey(Long id); |
| | | |
| | | public int insert(SuperHomeNavbar record); |
| | | |
| | | public int insertSelective(SuperHomeNavbar record); |
| | | |
| | | public SuperHomeNavbar selectByPrimaryKey(Long id); |
| | | |
| | | public int updateByPrimaryKeySelective(SuperHomeNavbar record); |
| | | |
| | | public int updateByPrimaryKey(SuperHomeNavbar record); |
| | | |
| | | |
| | | } |