添加公海私海分页

This commit is contained in:
xiaodong.hu
2023-11-13 10:41:15 +08:00
parent cdf2aba59a
commit 53eb52227a
20 changed files with 657 additions and 178 deletions

View File

@@ -0,0 +1,23 @@
package com.cool.store.enums;
public enum PageTurnTypeEnum {
PREVIOUS("previous"),
NEXT("next");
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
private String text;
PageTurnTypeEnum(String text) {
this.text = text;
}
}