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.
110 lines
2.5 KiB
110 lines
2.5 KiB
package com.epmet.service;
|
|
|
|
import com.epmet.commons.mybatis.service.BaseService;
|
|
import com.epmet.commons.tools.page.PageData;
|
|
import com.epmet.commons.tools.security.dto.TokenDto;
|
|
import com.epmet.dto.IcPointVaccinesInoculationDTO;
|
|
import com.epmet.dto.form.MapInfoFormDTO;
|
|
import com.epmet.dto.result.MapInfoResultDTO;
|
|
import com.epmet.entity.IcPointVaccinesInoculationEntity;
|
|
|
|
import java.io.InputStream;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* 疫苗接种点
|
|
*
|
|
* @author generator generator@elink-cn.com
|
|
* @since v1.0.0 2022-06-20
|
|
*/
|
|
public interface IcPointVaccinesInoculationService extends BaseService<IcPointVaccinesInoculationEntity> {
|
|
|
|
/**
|
|
* 默认分页
|
|
*
|
|
* @param params
|
|
* @return PageData<IcPointVaccinesInoculationDTO>
|
|
* @author generator
|
|
* @date 2022-06-20
|
|
*/
|
|
PageData<IcPointVaccinesInoculationDTO> page(Map<String, Object> params);
|
|
|
|
/**
|
|
* 分页条件查询
|
|
* @param params
|
|
* @return
|
|
*/
|
|
PageData<IcPointVaccinesInoculationDTO> getPhrasePage(Map<String, Object> params);
|
|
|
|
/**
|
|
* 默认查询
|
|
*
|
|
* @param params
|
|
* @return java.util.List<IcPointVaccinesInoculationDTO>
|
|
* @author generator
|
|
* @date 2022-06-20
|
|
*/
|
|
List<IcPointVaccinesInoculationDTO> list(Map<String, Object> params);
|
|
|
|
/**
|
|
* 单条查询
|
|
*
|
|
* @param id
|
|
* @return IcPointVaccinesInoculationDTO
|
|
* @author generator
|
|
* @date 2022-06-20
|
|
*/
|
|
IcPointVaccinesInoculationDTO get(String id);
|
|
|
|
/**
|
|
* 默认保存
|
|
*
|
|
* @param dto
|
|
* @return void
|
|
* @author generator
|
|
* @date 2022-06-20
|
|
*/
|
|
void save(IcPointVaccinesInoculationDTO dto);
|
|
|
|
/**
|
|
* 默认更新
|
|
*
|
|
* @param dto
|
|
* @return void
|
|
* @author generator
|
|
* @date 2022-06-20
|
|
*/
|
|
void update(IcPointVaccinesInoculationDTO dto);
|
|
|
|
/**
|
|
* 批量删除
|
|
*
|
|
* @param ids
|
|
* @return void
|
|
* @author generator
|
|
* @date 2022-06-20
|
|
*/
|
|
void delete(String[] ids);
|
|
|
|
/**
|
|
* Desc: 【疫苗接种点】导入
|
|
* @param tokenDto
|
|
* @param inputStream
|
|
* @author zxc
|
|
* @date 2022/3/29 15:35
|
|
*/
|
|
void importFile(TokenDto tokenDto, InputStream inputStream, String taskId);
|
|
|
|
/**
|
|
* 获取地图信息
|
|
*
|
|
* @param formDTO
|
|
* @return java.util.List<MapInfoResultDTO>
|
|
* @author wgf
|
|
* @date 2022-06-20
|
|
*/
|
|
List<MapInfoResultDTO> getMapInfoList(MapInfoFormDTO formDTO);
|
|
|
|
|
|
}
|
|
|