| | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.panzhihua.service_community.model.dos.ComMngPopulationHouseUserDO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | | |
| | | /** |
| | | * @auther lyq |
| | |
| | | @Mapper |
| | | public interface ComMngPopulationHouseUserDAO extends BaseMapper<ComMngPopulationHouseUserDO> { |
| | | |
| | | @Select("delete from com_mng_population_house_user where popul_id = #{populationId}") |
| | | void deletePopulationHouseByUserId(@Param("populationId") Long populationId); |
| | | |
| | | } |