健康报告查询接口

This commit is contained in:
limqhz
2021-03-08 00:08:14 +08:00
parent d35edae11e
commit 2ec2494a01
6 changed files with 216 additions and 354 deletions

View File

@@ -1,6 +1,9 @@
package com.sv.mapper;
import com.sv.entity.HealthDoc;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface HealthDocMapper {
int deleteByPrimaryKey(Integer id);
@@ -14,4 +17,6 @@ public interface HealthDocMapper {
int updateByPrimaryKeySelective(HealthDoc record);
int updateByPrimaryKey(HealthDoc record);
}
List<HealthDoc> findMemAll();
}