OperationLogSmartExample.java 304 Bytes
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2 3 4 5 6 7 8 9 10 11 12 13
package pwc.taxtech.atms.entitiy;

public class OperationLogSmartExample extends OperationLogBasicDataExample {
    private String tableName;

    public String getTableName() {
        return tableName;
    }

    public void setTableName(String tableName) {
        this.tableName = tableName;
    }
}