package com.welampiot.service.impl; import com.welampiot.dao.DefectManageDao; import com.welampiot.dto.DefectManageDTO; import com.welampiot.service.DefectManageService; import com.welampiot.vo.DefectManageVO; import com.welampiot.vo.OperationVO; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; /** * ClassName: DefectManageServiceImpl * Package: com.welampiot.service.impl * Description: * * @Author: zhj_Start * @Create: 2023/6/29 - 9:59 * @Version: v1.0 */ @Service public class DefectManageServiceImpl implements DefectManageService { @Autowired private DefectManageDao defectManageDao; @Override public void addDefectManage(DefectManageDTO dto) { defectManageDao.addDefectManage(dto); } @Override public void updateDefectManage(DefectManageDTO dto) { defectManageDao.updateDefectManage(dto); } @Override public void updateDefectManageStatus(DefectManageDTO dto) { defectManageDao.updateDefectManageStatus(dto); } @Override public Integer getUseridById(Integer id) { return defectManageDao.getUseridById(id); } @Override public List getDefectManageListByVO(DefectManageVO vo) { return defectManageDao.getDefectManageListByVO(vo); } @Override public Integer getDefectManageTotal(DefectManageVO vo) { return defectManageDao.getDefectManageTotal(vo); } @Override public Integer getDefectManageTotal2(DefectManageVO vo) { return defectManageDao.getDefectManageTotal2(vo); } @Override public Integer getDefectManageTotal3(DefectManageVO vo) { return defectManageDao.getDefectManageTotal3(vo); } @Override public Integer getDefectManageTotal4(DefectManageVO vo) { return defectManageDao.getDefectManageTotal4(vo); } @Override public Integer getDefectManageTotal5(DefectManageVO vo) { return defectManageDao.getDefectManageTotal5(vo); } @Override public Integer getDefectManageTotal6(DefectManageVO vo) { return defectManageDao.getDefectManageTotal6(vo); } @Override public DefectManageDTO getDefectManageInfoById(Integer id) { return defectManageDao.getDefectManageInfoById(id); } @Override public Integer getDefectManageCount(OperationVO vo) { return defectManageDao.getDefectManageCount(vo); } @Override public List getDefectManageCountOnMonth(OperationVO vo) { return defectManageDao.getDefectManageCountOnMonth(vo); } @Override public Integer getDefectManageUndistributedCount(OperationVO vo) { return defectManageDao.getDefectManageUndistributedCount(vo); } @Override public Integer getDefectManageHandlingCount(OperationVO vo) { return defectManageDao.getDefectManageHandlingCount(vo); } @Override public Integer getDefectManageRecheckCount(OperationVO vo) { return defectManageDao.getDefectManageRecheckCount(vo); } @Override public Integer getDefectManageCloseCaseCount(OperationVO vo) { return defectManageDao.getDefectManageCloseCaseCount(vo); } @Override public Integer getDefectManageArchiveCount(OperationVO vo) { return defectManageDao.getDefectManageArchiveCount(vo); } }