|
|
@ -3,6 +3,7 @@ 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; |
|
|
|
|
|
|
|
/** |
|
|
|
* 居民信息采集表 |
|
|
@ -14,4 +15,9 @@ import org.apache.ibatis.annotations.Mapper; |
|
|
|
public interface IcResiCollectDao extends BaseDao<IcResiCollectEntity> { |
|
|
|
|
|
|
|
IcResiCollectEntity selectByAddress(String address); |
|
|
|
|
|
|
|
int updateRec(@Param("id") String id, |
|
|
|
@Param("houseType") Integer houseType, |
|
|
|
@Param("houseHolderName") String houseHolderName, |
|
|
|
@Param("totalResi") Integer totalResi); |
|
|
|
} |