1234567891011121314 |
- package com.zcxk.meterreadingsystemv2.dao;
- import com.zcxk.meterreadingsystemv2.dto.DeviceCustomerInfo;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- @Mapper
- public interface DeviceMapper {
- List<DeviceCustomerInfo> getDeviceCustomerInfo(@Param("communityId") Integer communityId, @Param("buildingId") Integer buildingId);
- List<DeviceCustomerInfo> getDeviceCustomerInfoByCustomerId(@Param("customerId") Integer customerId);
- }
|