1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.changhong.autoform.service.table;
|
| import com.changhong.autoform.entity.TableStructure;
|
| public interface TableService {
|
| /**
| * 创建表结构
| */
| int createTable(TableStructure tableStructure);
|
| /**
| * 修改表结构
| */
| int updateTable(TableStructure tableStructure);
| }
|
|