Lius
2025-06-24 92b8a49f972e6a6b887745f4d2cc2c0cac704a96
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.jeecg.modules.mdc.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.mdc.entity.LogTable;
 
/**
 * @author Lius
 * @date 2024/12/18 14:29
 */
public interface ILogTableService extends IService<LogTable> {
 
    /**
     * 导入同步数据sql执行到数据库
     */
    void importXmlToData();
 
}