package com.welampiot.service; import com.welampiot.dto.DefectManageDTO; import com.welampiot.vo.DefectManageVO; import com.welampiot.vo.OperationVO; import java.util.List; /** * ClassName: DefectManageService * Package: com.welampiot.service * Description: * * @Author: zhj_Start * @Create: 2023/6/29 - 9:59 * @Version: v1.0 */ public interface DefectManageService { void addDefectManage(DefectManageDTO dto); void updateDefectManage(DefectManageDTO dto); void updateDefectManageStatus(DefectManageDTO dto); Integer getUseridById(Integer id); List getDefectManageListByVO(DefectManageVO vo); Integer getDefectManageTotal(DefectManageVO vo); Integer getDefectManageTotal2(DefectManageVO vo); Integer getDefectManageTotal3(DefectManageVO vo); Integer getDefectManageTotal4(DefectManageVO vo); Integer getDefectManageTotal5(DefectManageVO vo); Integer getDefectManageTotal6(DefectManageVO vo); DefectManageDTO getDefectManageInfoById(Integer id); Integer getDefectManageCount(OperationVO vo); List getDefectManageCountOnMonth(OperationVO vo); Integer getDefectManageUndistributedCount(OperationVO vo); Integer getDefectManageHandlingCount(OperationVO vo); Integer getDefectManageRecheckCount(OperationVO vo); Integer getDefectManageCloseCaseCount(OperationVO vo); Integer getDefectManageArchiveCount(OperationVO vo); }