ludc
2023-04-26 3cb0cef6f7189dcbb537df52cef5921d1d2c3cd9
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.vci.ubcs.ddl.processor.ddl;
 
/**
 * Description:
 *
 * @author LiHang
 * @date 2023/4/25
 */
public interface DdlBehavior {
    String SPACE = " ";
 
    void modifyTableBySqlBase(String tableName,String attributeSql);
}