烟台政务云平台
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.
 
 
 
 
 

78 lines
1.6 KiB

package com.epmet.service;
import com.epmet.commons.mybatis.service.BaseService;
import com.epmet.commons.tools.page.PageData;
import com.epmet.dto.IcVolunteerPolyDTO;
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);
}