
sf.dsl.example.OffsetLimit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sorm Show documentation
Show all versions of sorm Show documentation
java jpa tool for spring
The newest version!
package sf.dsl.example;
public class OffsetLimit {
private long offset;
private int limit;
public OffsetLimit(long offset, int limit) {
this.offset = offset;
this.limit = limit;
}
public long getOffset() {
return offset;
}
public int getLimit() {
return limit;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy