PatrolInspectionPersonnelMapper.java 330 B

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