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

public class OperationLogSmartExample extends OperationLogBasicDataExample {
    private String tableName;

    public String getTableName() {
        return tableName;
    }

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