PatrolInspectionPersonnelMapper.java 392 B

123456789101112131415161718
  1. package com.usky.fire.mapper;
  2. import com.usky.fire.domain.PatrolInspectionPersonnel;
  3. import com.usky.common.mybatis.core.CrudMapper;
  4. import org.springframework.stereotype.Repository;
  5. /**
  6. * <p>
  7. * 巡检人员表 Mapper 接口
  8. * </p>
  9. *
  10. * @author JCB
  11. * @since 2022-07-26
  12. */
  13. @Repository
  14. public interface PatrolInspectionPersonnelMapper extends CrudMapper<PatrolInspectionPersonnel> {
  15. }