1234567891011121314151617181920212223242526 |
- 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<SectionDTO> getAllList() {return sectionDao.getAllList();}
- @Override
- public List<SectionDTO> getListByPid(Integer pid) {return sectionDao.getListByPid(pid);}
- @Override
- public List<SectionDTO> getListByPidList(List pidList) {return sectionDao.getListByPidList(pidList);}
- @Override
- public List<SectionDTO> getListByIdList(List idList) {return sectionDao.getListByIdList(idList);}
- }
|