package com.zcxk.meterreadingsystemv2.dao; import com.zcxk.meterreadingsystemv2.entity.TRemoteCustomer; import java.util.List; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; @Mapper public interface TRemoteCustomerMapper { int insertSelective(TRemoteCustomer record); int batchInsert(@Param("list") List list); int updateByPrimaryKeySelective(TRemoteCustomer tRemoteCustomer); TRemoteCustomer findByMeteraddr(@Param("deviceNo") String deviceNo); }