package com.welampiot.service.impl; import com.welampiot.dao.WorkManageFileDao; import com.welampiot.dto.WorkManageFileDTO; import com.welampiot.service.WorkManageFileService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; /** * ClassName: WorkManageFileServiceImpl * Package: com.welampiot.service.impl * Description: * * @Author: zhj_Start * @Create: 2023/6/27 - 18:03 * @Version: v1.0 */ @Service public class WorkManageFileServiceImpl implements WorkManageFileService { @Autowired private WorkManageFileDao workManageFileDao; @Override public List getWorkManageFileListById(Integer id) { return workManageFileDao.getWorkManageFileListById(id); } }