健康报告上传查看功能

This commit is contained in:
limqhz
2021-03-08 22:48:38 +08:00
parent 4247ae6e12
commit bc12c4b9ca
7 changed files with 180 additions and 7 deletions

View File

@@ -1,6 +1,8 @@
package com.sv.mapper;
import com.sv.entity.HealthDoc;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface HealthDocMapper {
@@ -17,4 +19,6 @@ public interface HealthDocMapper {
int updateByPrimaryKey(HealthDoc record);
List<HealthDoc> findMemAll();
List<HealthDoc> findDocsByMemberId(@Param("memberId") Integer memberId);
}