PatrolInspectionTeamMapper.java 311 B

12345678910111213141516
  1. package com.bizmatics.persistence.mapper;
  2. import com.bizmatics.model.PatrolInspectionTeam;
  3. import com.bizmatics.common.mvc.base.CrudMapper;
  4. /**
  5. * <p>
  6. * Mapper 接口
  7. * </p>
  8. *
  9. * @author ya
  10. * @since 2021-10-18
  11. */
  12. public interface PatrolInspectionTeamMapper extends CrudMapper<PatrolInspectionTeam> {
  13. }