PatrolInspectionDeviceService.java 910 B

1234567891011121314151617181920212223242526272829
  1. package com.bizmatics.service;
  2. import com.bizmatics.common.mvc.base.CrudService;
  3. import com.bizmatics.model.PatrolInspectionDevice;
  4. import com.bizmatics.model.vo.PatrolInspectionDeviceVo;
  5. import org.springframework.web.multipart.MultipartFile;
  6. import javax.servlet.http.HttpServletRequest;
  7. import java.util.List;
  8. /**
  9. * 巡检设备
  10. *
  11. * @author ya
  12. * @since 2021-10-15
  13. */
  14. public interface PatrolInspectionDeviceService extends CrudService<PatrolInspectionDevice> {
  15. void patrolInspectionDeviceAdd(String inspectionDeviceName, Integer siteId, Integer deviceTypeId);
  16. void patrolInspectionDeviceUpdate(PatrolInspectionDevice patrolInspectionDevice);
  17. void patrolInspectionDeviceDel(Integer id);
  18. List<PatrolInspectionDeviceVo> patrolInspectionDeviceList(String inspectionDeviceName, Integer siteId, Integer id);
  19. String pictureUpload(MultipartFile file, HttpServletRequest request);
  20. }