LoopService.java 923 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package com.welampiot.service;
  2. import com.welampiot.dto.LoopDTO;
  3. import com.welampiot.vo.LoopDetailVO;
  4. import com.welampiot.vo.LoopVO;
  5. import org.apache.ibatis.annotations.Param;
  6. import java.util.List;
  7. /**
  8. * ClassName: LoopService
  9. * Package: com.welampiot.service
  10. * Description:
  11. *
  12. * @Author: zhj_Start
  13. * @Create: 2023/4/4 - 15:13
  14. * @Version: v1.0
  15. */
  16. public interface LoopService {
  17. LoopVO getLoopList(LoopDTO dto);
  18. LoopDetailVO getLoopDetail(Integer id, Integer version, List<LoopDTO> sectionList);
  19. LoopVO getLoopDropDownList(List<LoopDTO> sectionList);
  20. void addLoopDataByDTO(LoopDTO dto);
  21. void updateLoopDataByDTO(LoopDTO dto);
  22. Integer findByLoopDTO(LoopDTO dto);
  23. Integer findSNByLoopDTO(LoopDTO dto);
  24. void deleteLoopDataById(@Param("id") Integer id);
  25. void deleteLoopLogDataById(@Param("id") Integer id);
  26. void deleteLoopLogNewDataById(@Param("id") Integer id);
  27. }