OperationLogSmart.java 344 Bytes
package pwc.taxtech.atms.entitiy;

public class OperationLogSmart extends OperationLogBasicData {
    private static final long serialVersionUID = 1L;
    private String tableName;

    public String getTableName() {
        return tableName;
    }

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

}