- package com.example.dao.gdc;
- import com.example.config.mybatis.ex.method.ExBaseMapper;
- import com.example.pojo.gdc.OtnAreaEntity;
- import com.example.pojo.gdc.WzRemarkEntity;
- import org.apache.ibatis.annotations.Mapper;
- @Mapper
- public interface WzRemarkDao extends ExBaseMapper<WzRemarkEntity> {
- OtnAreaEntity queryObjectById(Long id);
- }
|