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

Class UpdateItem

src/main/java/com/sql/parse/schema/UpdateItem.java:7–23  ·  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 UpdateItem {
8 private String columnName;
9 private String expression;
10
11 public UpdateItem(String columnName, String expr) {
12 this.columnName =columnName;
13 this.expression = expr;
14 }
15
16 public String getColumnName() {
17 return columnName;
18 }
19
20 public String getExpression() {
21 return expression;
22 }
23}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected