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

46 lines
1.1 KiB

4 years ago
package com.epmet.service;
import com.epmet.commons.mybatis.service.BaseService;
import com.epmet.commons.tools.page.PageData;
import com.epmet.dto.form.VaccineListFormDTO;
import com.epmet.dto.result.IcVaccineListResultDTO;
4 years ago
import com.epmet.entity.IcVaccineEntity;
import java.nio.file.Path;
4 years ago
/**
* 疫苗接种记录
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2022-04-06
*/
public interface IcVaccineService extends BaseService<IcVaccineEntity> {
/**
* @Author sun
* @Description 核酸核酸检测信息列表
4 years ago
*
* @param formDTO
* @return*/
PageData<IcVaccineListResultDTO> icVaccineList(VaccineListFormDTO formDTO);
4 years ago
/**
4 years ago
* @Author zxc
* @Description 核酸核酸检测信息同步
**/
4 years ago
void synchro(VaccineListFormDTO formDTO);
/**
4 years ago
* @Author zxc
* @Description 核酸核酸检测信息取消同步
**/
4 years ago
void cancelSynchro(VaccineListFormDTO formDTO);
/**
* 执行Excel导入
* @param filePath
4 years ago
*/
void execAsyncExcelImport(Path filePath, String importTaskId);
4 years ago
}