TiltDevService.java 524 B

12345678910111213141516171819202122232425
  1. package com.welampiot.service;
  2. import com.welampiot.dto.TiltDevDTO;
  3. import com.welampiot.vo.TiltDevVO;
  4. /**
  5. * ClassName: TiltDevService
  6. * Package: com.welampiot.service
  7. * Description:
  8. *
  9. * @Author: zhj_Start
  10. * @Create: 2023/5/23 - 14:43
  11. * @Version: v1.0
  12. */
  13. public interface TiltDevService {
  14. TiltDevVO getTiltDevByDTO(TiltDevDTO dto);
  15. TiltDevVO getTiltData(TiltDevDTO dto);
  16. void deleteTiltDevById(Integer id);
  17. void updateTiltDataByDTO(TiltDevDTO dto);
  18. Integer findByTiltDTO(TiltDevDTO dto);
  19. }