wlzboy
4 天以前 c098f1e3a3e052aa3d65584aae6dc003a70d75ad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ruoyi.system.service;
 
import com.ruoyi.common.core.domain.AjaxResult;
 
/**
 * 医院数据同步Service接口
 * 
 * @author ruoyi
 */
public interface IHospDataSyncService
{
    /**
     * 从SQL Server同步医院数据到MySQL
     * 
     * @return 同步结果
     */
    AjaxResult syncHospData();
}