日照智慧社区接口服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

37 lines
1.1 KiB

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<IcVolunteerPolyEntity> {
/**
* 【网格党建平面图】地图
* @param code
*/
List<VolunteerPolyMapDataResultDTO> getMapData(@Param("code") String code,
@Param("customerId") String customerId);
/**
* 【网格党建平面图】列表
* @param code
*/
List<VolunteerPolyListResultDTO> getList(@Param("code") String code,
@Param("customerId") String customerId);
void deleteDataByCustomerId(@Param("customerId") String customerId);
void deleteCategoryByCustomerId(@Param("customerId") String customerId);
}