liusheng
2023-06-06 e975b2b18607732086feefe522c93b4b8d3391a5
smartor/src/main/java/com/smartor/service/IPatArchiveService.java
@@ -1,19 +1,22 @@
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接口
 *
 *
 * @author smartor
 * @date 2023-03-01
 * @date 2023-03-04
 */
public interface IPatArchiveService
{
public interface IPatArchiveService {
    /**
     * 查询患者档案
     *
     *
     * @param patid 患者档案主键
     * @return 患者档案
     */
@@ -21,7 +24,7 @@
    /**
     * 查询患者档案列表
     *
     *
     * @param patArchive 患者档案
     * @return 患者档案集合
     */
@@ -29,7 +32,7 @@
    /**
     * 新增患者档案
     *
     *
     * @param patArchive 患者档案
     * @return 结果
     */
@@ -37,7 +40,7 @@
    /**
     * 修改患者档案
     *
     *
     * @param patArchive 患者档案
     * @return 结果
     */
@@ -45,7 +48,7 @@
    /**
     * 批量删除患者档案
     *
     *
     * @param patids 需要删除的患者档案主键集合
     * @return 结果
     */
@@ -53,9 +56,17 @@
    /**
     * 删除患者档案信息
     *
     *
     * @param patid 患者档案主键
     * @return 结果
     */
    public int deletePatArchiveByPatid(Long patid);
    /**
     * 患者信息批量插入
     *
     * @param title
     * @param file
     */
    public PatUpInfoVO fileHandle( String username, MultipartFile file);
}