liusheng
2023-06-06 e975b2b18607732086feefe522c93b4b8d3391a5
smartor/src/main/java/com/smartor/service/IPatArchiveService.java
@@ -1,7 +1,11 @@
package com.smartor.service;
import java.util.List;
import com.smartor.domain.PatArchive;
import com.smartor.domain.PatUpInfoVO;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.multipart.MultipartFile;
/**
 * 患者档案Service接口
@@ -9,8 +13,7 @@
 * @author smartor
 * @date 2023-03-04
 */
public interface IPatArchiveService
{
public interface IPatArchiveService {
    /**
     * 查询患者档案
     * 
@@ -58,4 +61,12 @@
     * @return 结果
     */
    public int deletePatArchiveByPatid(Long patid);
    /**
     * 患者信息批量插入
     *
     * @param title
     * @param file
     */
    public PatUpInfoVO fileHandle( String username, MultipartFile file);
}