| | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.panzhihua.service_community.model.dos.ComElderAuthElderliesDO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * title: ComElderAuthElderliesDAO 社区政务》高龄老人认证》高龄老人表mapper类 |
| | |
| | | @Mapper |
| | | public interface ComElderAuthElderliesDAO extends BaseMapper<ComElderAuthElderliesDO> { |
| | | |
| | | int haveElderAuthElderliesAmount(@Param("communityId") Long communityId, @Param("authPeriod") String authPeriod); |
| | | |
| | | /** |
| | | * 维护高龄老人健在状态 |
| | | * @param populationId 人口id |
| | | * @param isAlive 健在状态(1.健在 0.未健在) |
| | | */ |
| | | void editEditIsAlive(@Param("populationId") Long populationId,@Param("isAlive") Integer isAlive); |
| | | |
| | | /** |
| | | * 高龄认证定时任务查询高龄老人信息 |
| | | * @return 高龄老人信息列表 |
| | | */ |
| | | List<ComElderAuthElderliesDO> getAuthElderLiesList(); |
| | | } |