123456789101112131415161718 |
- package com.bizmatics.service.impl;
- import com.bizmatics.common.mvc.base.AbstractCrudService;
- import com.bizmatics.model.PatrolInspectionRoute;
- import com.bizmatics.persistence.mapper.PatrolInspectionRouteMapper;
- import com.bizmatics.service.PatrolInspectionRouteService;
- import org.springframework.stereotype.Service;
- /**
- * 暂时未用
- *
- * @author ya
- * @since 2021-10-19
- */
- @Service
- public class PatrolInspectionRouteServiceImpl extends AbstractCrudService<PatrolInspectionRouteMapper, PatrolInspectionRoute> implements PatrolInspectionRouteService {
- }
|