123456789101112131415161718 |
- package com.usky.fire.mapper;
- import com.usky.fire.domain.PatrolInspectionContent;
- import com.usky.common.mybatis.core.CrudMapper;
- import org.springframework.stereotype.Repository;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author JCB
- * @since 2022-07-15
- */
- @Repository
- public interface PatrolInspectionContentMapper extends CrudMapper<PatrolInspectionContent> {
- }
|