123456789101112131415161718 |
- package com.usky.fire.mapper;
- import com.usky.fire.domain.DemMicroStation;
- import com.usky.common.mybatis.core.CrudMapper;
- import org.springframework.stereotype.Repository;
- /**
- * <p>
- * 微型消防站 Mapper 接口
- * </p>
- *
- * @author JCB
- * @since 2022-10-24
- */
- @Repository
- public interface DemMicroStationMapper extends CrudMapper<DemMicroStation> {
- }
|