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.
105 lines
2.4 KiB
105 lines
2.4 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.IcVaccinePrarmeterDTO;
|
|
import com.epmet.dto.form.IcResiCollectCheckFormDTO;
|
|
import com.epmet.dto.form.IcVaccineCheckFormDTO;
|
|
import com.epmet.entity.IcVaccinePrarmeterEntity;
|
|
|
|
import java.io.InputStream;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* 新冠病毒疫苗接种人员信息台账
|
|
*
|
|
* @author generator generator@elink-cn.com
|
|
* @since v1.0.0 2022-08-22
|
|
*/
|
|
public interface IcVaccinePrarmeterService extends BaseService<IcVaccinePrarmeterEntity> {
|
|
|
|
/**
|
|
* 默认分页
|
|
*
|
|
* @param params
|
|
* @return PageData<IcVaccinePrarmeterDTO>
|
|
* @author generator
|
|
* @date 2022-08-22
|
|
*/
|
|
PageData<IcVaccinePrarmeterDTO> page(Map<String, Object> params);
|
|
|
|
/**
|
|
* 分页条件查询
|
|
* @param params
|
|
* @return
|
|
*/
|
|
PageData<IcVaccinePrarmeterDTO> getPhrasePage(Map<String, Object> params, TokenDto tokenDto);
|
|
|
|
/**
|
|
* 默认查询
|
|
*
|
|
* @param params
|
|
* @return java.util.List<IcVaccinePrarmeterDTO>
|
|
* @author generator
|
|
* @date 2022-08-22
|
|
*/
|
|
List<IcVaccinePrarmeterDTO> list(Map<String, Object> params);
|
|
|
|
/**
|
|
* 单条查询
|
|
*
|
|
* @param id
|
|
* @return IcVaccinePrarmeterDTO
|
|
* @author generator
|
|
* @date 2022-08-22
|
|
*/
|
|
IcVaccinePrarmeterDTO get(String id);
|
|
|
|
/**
|
|
* 默认保存
|
|
*
|
|
* @param dto
|
|
* @return void
|
|
* @author generator
|
|
* @date 2022-08-22
|
|
*/
|
|
void save(IcVaccinePrarmeterDTO dto);
|
|
|
|
/**
|
|
* 默认更新
|
|
*
|
|
* @param dto
|
|
* @return void
|
|
* @author generator
|
|
* @date 2022-08-22
|
|
*/
|
|
void update(IcVaccinePrarmeterDTO dto);
|
|
|
|
/**
|
|
* 批量删除
|
|
*
|
|
* @param ids
|
|
* @return void
|
|
* @author generator
|
|
* @date 2022-08-22
|
|
*/
|
|
void delete(String[] ids);
|
|
|
|
/**
|
|
* Desc: 【新冠病毒疫苗接种人员信息台账】导入
|
|
* @param tokenDto
|
|
* @param inputStream
|
|
* @author wgf
|
|
* @date 2022/8/22 15:35
|
|
*/
|
|
void importFile(TokenDto tokenDto, InputStream inputStream, String taskId);
|
|
|
|
/**
|
|
* 新冠病毒疫苗接种人员信息台账审核
|
|
* @param formDTO
|
|
* @return
|
|
*/
|
|
void vaccineCheck(IcVaccineCheckFormDTO formDTO, TokenDto tokenDto);
|
|
}
|
|
|