DefectManageService.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package com.welampiot.service;
  2. import com.welampiot.dto.DefectManageDTO;
  3. import com.welampiot.vo.DefectManageVO;
  4. import com.welampiot.vo.OperationVO;
  5. import java.util.List;
  6. /**
  7. * ClassName: DefectManageService
  8. * Package: com.welampiot.service
  9. * Description:
  10. *
  11. * @Author: zhj_Start
  12. * @Create: 2023/6/29 - 9:59
  13. * @Version: v1.0
  14. */
  15. public interface DefectManageService {
  16. void addDefectManage(DefectManageDTO dto);
  17. void updateDefectManage(DefectManageDTO dto);
  18. void updateDefectManageStatus(DefectManageDTO dto);
  19. Integer getUseridById(Integer id);
  20. List<DefectManageDTO> getDefectManageListByVO(DefectManageVO vo);
  21. Integer getDefectManageTotal(DefectManageVO vo);
  22. Integer getDefectManageTotal2(DefectManageVO vo);
  23. Integer getDefectManageTotal3(DefectManageVO vo);
  24. Integer getDefectManageTotal4(DefectManageVO vo);
  25. Integer getDefectManageTotal5(DefectManageVO vo);
  26. Integer getDefectManageTotal6(DefectManageVO vo);
  27. DefectManageDTO getDefectManageInfoById(Integer id);
  28. Integer getDefectManageCount(OperationVO vo);
  29. List<DefectManageDTO> getDefectManageCountOnMonth(OperationVO vo);
  30. Integer getDefectManageUndistributedCount(OperationVO vo);
  31. Integer getDefectManageHandlingCount(OperationVO vo);
  32. Integer getDefectManageRecheckCount(OperationVO vo);
  33. Integer getDefectManageCloseCaseCount(OperationVO vo);
  34. Integer getDefectManageArchiveCount(OperationVO vo);
  35. }