sinake
2 天以前 7eb77f959d2e60fced8c5f1486ba205fc7282428
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);
 
 
}