| 123456789101112131415161718192021222324252627 |
- package com.welampiot.dao;
- import com.welampiot.dto.SectionDTO;
- import com.welampiot.vo.SectionVO;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- public interface SectionDao {
- List<SectionDTO> getAllList(SectionDTO sectionDTO);
- List<SectionDTO> getListByPid(@Param("pid") Integer pid);
- List<SectionDTO> getListByPidList(@Param("pidList") List pidList);
- List<SectionDTO> getListByIdList(@Param("idList") List idList);
- SectionDTO getOneById(@Param("id") Integer id);
- List<SectionDTO> getPidBySectionList(SectionDTO dto);
- List<SectionDTO> getSectionListByDTO(SectionDTO dto);
- void addSectionData(SectionDTO dto);
- Integer checkNameRepeated(SectionDTO dto);
- Integer getSectionPidById(@Param("id") Integer id);
- void updateSectionData(SectionDTO dto);
- List<SectionDTO> getListByVO(SectionVO sectionVO);
- void deleteSectionDataById(@Param("id") Integer id);
- List<SectionDTO> getAllSectionList();
- List<SectionDTO> getAllSectionListByPid(@Param("id") Integer id);
- SectionDTO getDataByVO(SectionDTO dto);
- void updateSectionById(SectionDTO dto);
- }
|