| 1 | |
package liquibase.statement.core; |
| 2 | |
|
| 3 | |
import liquibase.statement.AbstractSqlStatement; |
| 4 | |
|
| 5 | |
public class SetTableRemarksStatement extends AbstractSqlStatement { |
| 6 | |
|
| 7 | |
private String schemaName; |
| 8 | |
private String tableName; |
| 9 | |
private String remarks; |
| 10 | |
|
| 11 | 3 | public SetTableRemarksStatement(String schemaName, String tableName, String remarks) { |
| 12 | 3 | this.schemaName = schemaName; |
| 13 | 3 | this.tableName = tableName; |
| 14 | 3 | this.remarks = remarks; |
| 15 | 3 | } |
| 16 | |
|
| 17 | |
public String getSchemaName() { |
| 18 | 0 | return schemaName; |
| 19 | |
} |
| 20 | |
|
| 21 | |
public String getTableName() { |
| 22 | 0 | return tableName; |
| 23 | |
} |
| 24 | |
|
| 25 | |
public String getRemarks() { |
| 26 | 0 | return remarks; |
| 27 | |
} |
| 28 | |
|
| 29 | |
} |