package com.epmet.dao; import com.epmet.commons.mybatis.dao.BaseDao; import com.epmet.dto.result.VolunteerPolyListResultDTO; import com.epmet.dto.result.VolunteerPolyMapDataResultDTO; import com.epmet.entity.IcVolunteerPolyEntity; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; /** * 志愿者信息聚合 * * @author generator generator@elink-cn.com * @since v1.0.0 2022-05-19 */ @Mapper public interface IcVolunteerPolyDao extends BaseDao { /** * 【网格党建平面图】地图 * @param code */ List getMapData(@Param("code") String code, @Param("customerId") String customerId); /** * 【网格党建平面图】列表 * @param code */ List getList(@Param("code") String code, @Param("customerId") String customerId); void deleteDataByCustomerId(@Param("customerId") String customerId); void deleteCategoryByCustomerId(@Param("customerId") String customerId); }