shicf
2025-05-13 664acafa02cddbd86771ade63afb78db2de0109e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.product.patch.service.idel;
 
import java.util.List;
 
/**
 * 实现功能:
 *
 * @author 作者[夜丶光]
 * @version 1.0.00  2024-10-16 16:39
 */
public interface ISyncTableStructureService {
 
    /**
     * 查询获取出数据库表结构字段和缓存字段表字段存在差异的表
     * @return
     */
    List<String> listDiffTable();
 
    /**
     * 将数据库表结构字段同步至缓存字段表字段
     */
    void execute();
}