1234567891011121314151617 |
- package com.zy.omp.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.zy.omp.model.Location;
- import org.apache.ibatis.annotations.Mapper;
- import org.springframework.stereotype.Repository;
- /**
- * 设备位置信息
- *
- * @author chenyi
- * Create on 2020/4/10
- */
- @Mapper
- @Repository
- public interface LocationMapper extends BaseMapper<Location> {
- }
|