All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fastchar.database.FastRecord Maven / Gradle / Ivy

There is a newer version: 2.2.2
Show newest version
package com.fastchar.database;

import com.fastchar.annotation.AFastEntity;
import com.fastchar.core.FastEntity;

@AFastEntity(enable = false)
public class FastRecord extends FastEntity {
    private static final long serialVersionUID = -5746145908981682188L;
    private String tableName;
    @Override
    public String getTableName() {
        return tableName;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy