sinake
2026-06-08 cf9c63e9a06a66969066a8a0179dfe1f00f9ed94
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);
 
 
}