12345678910111213 |
- package com.example.dao.gdc;
- import com.example.config.mybatis.ex.method.ExBaseMapper;
- import com.example.pojo.gdc.WzDataInspectionEntity;
- import org.apache.ibatis.annotations.Mapper;
- @Mapper
- public interface WzDataInspectionDao extends ExBaseMapper<WzDataInspectionEntity> {
- // List<WzDataInspectionEntity> queryVoList(Map<String, Object> map);
- //
- // List<FloorNoUserVo> queryLeaveUseList(Map<String, Object> map);
- }
|