PatrolTeamInspectionService.java 299 B

12345678910111213141516
  1. package com.bizmatics.service;
  2. import com.bizmatics.model.PatrolTeamInspection;
  3. import com.bizmatics.common.mvc.base.CrudService;
  4. /**
  5. * <p>
  6. * 服务类
  7. * </p>
  8. *
  9. * @author ya
  10. * @since 2021-10-18
  11. */
  12. public interface PatrolTeamInspectionService extends CrudService<PatrolTeamInspection> {
  13. }