@date 2019年4月30日上午09:58:02 @desc 新增列实体
| 5 | * @desc 新增列实体 |
| 6 | */ |
| 7 | public 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected