com.fastchar.database.FastRecord Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastchar Show documentation
Show all versions of fastchar Show documentation
FastChar is Web+ORM Framework in Java.
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