12345678910111213141516171819202122232425262728293031323334 |
- package com.welampiot.service.impl;
- import com.welampiot.dao.ProgramInfoItemDao;
- import com.welampiot.dto.ProgramInfoItemDTO;
- import com.welampiot.service.ProgramInfoItemService;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- import java.util.List;
- /**
- * ClassName: ProgramInfoItemServiceImpl
- * Package: com.welampiot.service.impl
- * Description:
- *
- * @Author: zhj_Start
- * @Create: 2023/6/12 - 17:50
- * @Version: v1.0
- */
- @Service
- public class ProgramInfoItemServiceImpl implements ProgramInfoItemService {
- @Autowired
- private ProgramInfoItemDao programInfoItemDao;
- @Override
- public List<ProgramInfoItemDTO> getProgramItemListByInfoId(Integer programId) {
- return programInfoItemDao.getProgramItemListByInfoId(programId);
- }
- @Override
- public void deleteProgramInfoItemDataById(Integer programId) {
- programInfoItemDao.deleteProgramInfoItemDataById(programId);
- }
- }
|