Commit dcce7921 authored by zhangyong's avatar zhangyong

1

parent 210d861b
package com.egolm.common.jdbc;
public class PageSqlserver extends Page {
private static final long serialVersionUID = 1L;
public PageSqlserver() {
}
public PageSqlserver(String... limitKey) {
this.limitKey = limitKey;
}
public PageSqlserver(Long index, Long limit, String... limitKey) {
this.index = index;
this.limit = limit;
this.limitKey = limitKey;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment