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