PatrolInspectionContentMapper.java 371 B

123456789101112131415161718
  1. package com.usky.fire.mapper;
  2. import com.usky.fire.domain.PatrolInspectionContent;
  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-15
  12. */
  13. @Repository
  14. public interface PatrolInspectionContentMapper extends CrudMapper<PatrolInspectionContent> {
  15. }