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

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

package com.fastchar.database;

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

@AFastEntity(false)
public class FastRecord extends FastEntity {
    private String tableName;
    @Override
    public String getTableName() {
        return tableName;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy