liusheng
2023-06-08 19bbb04fe271943850e5b0cdba1aaeed633bc83f
smartor/src/main/java/com/smartor/mapper/PatArchiveMapper.java
@@ -1,19 +1,21 @@
package com.smartor.mapper;
import java.util.List;
import com.smartor.domain.PatArchive;
import org.apache.ibatis.annotations.Mapper;
/**
 * 患者档案Mapper接口
 *
 *
 * @author smartor
 * @date 2023-03-01
 * @date 2023-03-04
 */
public interface PatArchiveMapper
{
@Mapper
public interface PatArchiveMapper {
    /**
     * 查询患者档案
     *
     *
     * @param patid 患者档案主键
     * @return 患者档案
     */
@@ -21,7 +23,7 @@
    /**
     * 查询患者档案列表
     *
     *
     * @param patArchive 患者档案
     * @return 患者档案集合
     */
@@ -29,7 +31,7 @@
    /**
     * 新增患者档案
     *
     *
     * @param patArchive 患者档案
     * @return 结果
     */
@@ -37,7 +39,7 @@
    /**
     * 修改患者档案
     *
     *
     * @param patArchive 患者档案
     * @return 结果
     */
@@ -45,7 +47,7 @@
    /**
     * 删除患者档案
     *
     *
     * @param patid 患者档案主键
     * @return 结果
     */
@@ -53,7 +55,7 @@
    /**
     * 批量删除患者档案
     *
     *
     * @param patids 需要删除的数据主键集合
     * @return 结果
     */