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