it.ness.queryable.model.test.QT Maven / Gradle / Ivy
package it.ness.queryable.model.test;
import org.jboss.forge.roaster.model.source.AnnotationSource;
import org.jboss.forge.roaster.model.source.FieldSource;
import org.jboss.forge.roaster.model.source.JavaClassSource;
import java.util.List;
public class QT {
public String defaultValue;
public String updatedValue;
public FieldSource field;
public List> annotations;
public boolean isId = false;
@Override
public String toString() {
return "QT{" +
"defaultValue='" + defaultValue + '\'' +
", updatedValue='" + updatedValue + '\'' +
", field=" + field.getType() + " " + field.getName() +
", annotations=" + annotations +
", isId=" + isId +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy