mirror of
https://github.com/certd/certd.git
synced 2025-11-25 09:10:11 +08:00
perf: 支持godaddy
This commit is contained in:
@@ -21,9 +21,9 @@ export type PageRes = {
|
||||
export class Pager {
|
||||
pageNo: number;
|
||||
pageSize: number;
|
||||
constructor(req: PageSearch) {
|
||||
this.pageNo = req.pageNo ?? 1;
|
||||
this.pageSize = req.pageSize || 50;
|
||||
constructor(req?: PageSearch) {
|
||||
this.pageNo = req?.pageNo ?? 1;
|
||||
this.pageSize = req?.pageSize || 50;
|
||||
}
|
||||
|
||||
getOffset() {
|
||||
|
||||
Reference in New Issue
Block a user