DeviceMapper.java 503 B

1234567891011121314
  1. package com.zcxk.meterreadingsystemv2.dao;
  2. import com.zcxk.meterreadingsystemv2.dto.DeviceCustomerInfo;
  3. import org.apache.ibatis.annotations.Mapper;
  4. import org.apache.ibatis.annotations.Param;
  5. import java.util.List;
  6. @Mapper
  7. public interface DeviceMapper {
  8. List<DeviceCustomerInfo> getDeviceCustomerInfo(@Param("communityId") Integer communityId, @Param("buildingId") Integer buildingId);
  9. List<DeviceCustomerInfo> getDeviceCustomerInfoByCustomerId(@Param("customerId") Integer customerId);
  10. }