MCPcopy Create free account
hub / github.com/Nemo1870/sql-parse / InsertItem

Class InsertItem

src/main/java/com/sql/parse/schema/InsertItem.java:7–24  ·  view source on GitHub ↗

@date 2019年4月30日上午09:58:02 @desc 新增列实体

Source from the content-addressed store, hash-verified

5 * @desc 新增列实体
6 */
7public class InsertItem {
8 private String columnName;
9
10 private String expression;
11
12 public InsertItem(String columnName, String expr) {
13 this.columnName = columnName;
14 this.expression = expr;
15 }
16
17 public String getColumnName() {
18 return columnName;
19 }
20
21 public String getExpression() {
22 return expression;
23 }
24}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected