sinake
13 小时以前 a9389e50d306a05565dfb869cc907638d91fa7c7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.project.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.project.domain.GiLink;
 
public interface IGiLinkService extends IService<GiLink>{
 
    String Add(GiLink model);
 
    String SendReport(Long id,String coordinatorNo,String toHospital);
 
    String SendExpert(String id,String expertNo,String infoId);
 
 
}