package com.welampiot.service.impl; import com.welampiot.dao.SectionDao; import com.welampiot.dto.SectionDTO; import com.welampiot.service.SectionService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; @Service public class SectionServiceImpl implements SectionService { @Autowired private SectionDao sectionDao; @Override public List getAllList() {return sectionDao.getAllList();} @Override public List getListByPid(Integer pid) {return sectionDao.getListByPid(pid);} @Override public List getListByPidList(List pidList) {return sectionDao.getListByPidList(pidList);} @Override public List getListByIdList(List idList) {return sectionDao.getListByIdList(idList);} }