PatrolInspectionRouteServiceImpl.java 563 B

123456789101112131415161718
  1. package com.bizmatics.service.impl;
  2. import com.bizmatics.common.mvc.base.AbstractCrudService;
  3. import com.bizmatics.model.PatrolInspectionRoute;
  4. import com.bizmatics.persistence.mapper.PatrolInspectionRouteMapper;
  5. import com.bizmatics.service.PatrolInspectionRouteService;
  6. import org.springframework.stereotype.Service;
  7. /**
  8. * 暂时未用
  9. *
  10. * @author ya
  11. * @since 2021-10-19
  12. */
  13. @Service
  14. public class PatrolInspectionRouteServiceImpl extends AbstractCrudService<PatrolInspectionRouteMapper, PatrolInspectionRoute> implements PatrolInspectionRouteService {
  15. }