package com.epmet.dao; import com.epmet.commons.mybatis.dao.BaseDao; import com.epmet.entity.IcResiCollectEntity; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; /** * 居民信息采集表 * * @author generator generator@elink-cn.com * @since v1.0.0 2022-03-18 */ @Mapper public interface IcResiCollectDao extends BaseDao { IcResiCollectEntity selectByAddress(String address); int updateRec(@Param("id") String id, @Param("houseType") Integer houseType, @Param("houseHolderName") String houseHolderName, @Param("totalResi") Integer totalResi); }