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.
134 lines
3.1 KiB
134 lines
3.1 KiB
package com.epmet.service;
|
|
|
|
import com.epmet.commons.mybatis.service.BaseService;
|
|
import com.epmet.commons.tools.dto.form.mq.MqBaseFormDTO;
|
|
import com.epmet.commons.tools.page.PageData;
|
|
import com.epmet.dto.IcVolunteerPolyDTO;
|
|
import com.epmet.dto.form.VolunteerPolyListFormDTO;
|
|
import com.epmet.dto.form.VolunteerPolyMapDataFormDTO;
|
|
import com.epmet.dto.form.VolunteerPolyPieFormDTO;
|
|
import com.epmet.dto.result.VolunteerPolyMapDataResultDTO;
|
|
import com.epmet.dto.result.VolunteerPolyPieResultDTO;
|
|
import com.epmet.entity.IcVolunteerPolyEntity;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* 志愿者信息聚合
|
|
*
|
|
* @author generator generator@elink-cn.com
|
|
* @since v1.0.0 2022-05-19
|
|
*/
|
|
public interface IcVolunteerPolyService extends BaseService<IcVolunteerPolyEntity> {
|
|
|
|
/**
|
|
* 默认分页
|
|
*
|
|
* @param params
|
|
* @return PageData<IcVolunteerPolyDTO>
|
|
* @author generator
|
|
* @date 2022-05-19
|
|
*/
|
|
PageData<IcVolunteerPolyDTO> page(Map<String, Object> params);
|
|
|
|
/**
|
|
* 默认查询
|
|
*
|
|
* @param params
|
|
* @return java.util.List<IcVolunteerPolyDTO>
|
|
* @author generator
|
|
* @date 2022-05-19
|
|
*/
|
|
List<IcVolunteerPolyDTO> list(Map<String, Object> params);
|
|
|
|
/**
|
|
* 单条查询
|
|
*
|
|
* @param id
|
|
* @return IcVolunteerPolyDTO
|
|
* @author generator
|
|
* @date 2022-05-19
|
|
*/
|
|
IcVolunteerPolyDTO get(String id);
|
|
|
|
/**
|
|
* 默认保存
|
|
*
|
|
* @param dto
|
|
* @return void
|
|
* @author generator
|
|
* @date 2022-05-19
|
|
*/
|
|
void save(IcVolunteerPolyDTO dto);
|
|
|
|
/**
|
|
* 默认更新
|
|
*
|
|
* @param dto
|
|
* @return void
|
|
* @author generator
|
|
* @date 2022-05-19
|
|
*/
|
|
void update(IcVolunteerPolyDTO dto);
|
|
|
|
/**
|
|
* 批量删除
|
|
*
|
|
* @param ids
|
|
* @return void
|
|
* @author generator
|
|
* @date 2022-05-19
|
|
*/
|
|
void delete(String[] ids);
|
|
|
|
/**
|
|
* 【网格党建平面图】地图
|
|
*
|
|
* @param form
|
|
* @return java.util.List<com.epmet.dto.result.VolunteerPolyMapDataResultDTO>
|
|
* @author LZN
|
|
* @date 2022/5/19 13:55
|
|
*/
|
|
List<VolunteerPolyMapDataResultDTO> getMapData(VolunteerPolyMapDataFormDTO form);
|
|
|
|
/**
|
|
* 【网格党建平面图】列表
|
|
*
|
|
* @param form
|
|
* @return com.epmet.commons.tools.page.PageData
|
|
* @author LZN
|
|
* @date 2022/5/19 14:49
|
|
*/
|
|
PageData getList(VolunteerPolyListFormDTO form);
|
|
|
|
/**
|
|
* 志愿者数据抽取
|
|
*
|
|
* @Param customerId
|
|
* @Return void
|
|
* @Author zhaoqifeng
|
|
* @Date 2022/5/19 10:00
|
|
*/
|
|
void volunteerDataExtraction(String customerId);
|
|
|
|
/**
|
|
* 志愿者变动
|
|
*
|
|
* @Param dto
|
|
* @Return
|
|
* @Author zhaoqifeng
|
|
* @Date 2022/5/19 16:02
|
|
*/
|
|
void volunteerChanged(MqBaseFormDTO dto);
|
|
|
|
/**
|
|
* 【网格党建平面图】饼图
|
|
*
|
|
* @param form
|
|
* @return com.epmet.dto.result.VolunteerPolyPieResultDTO
|
|
* @author LZN
|
|
* @date 2022/5/19 17:21
|
|
*/
|
|
List<VolunteerPolyPieResultDTO> getStatistics(VolunteerPolyPieFormDTO form);
|
|
}
|